mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-06-05 17:21:34 +00:00
Improve build system and CLI integration
Omit specs from build Commit build directory and add bin entry point
This commit is contained in:
parent
76e92fea22
commit
2fa26d3dba
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,4 +26,3 @@ build/Release
|
|||||||
# Commenting this out is preferred by some people, see
|
# Commenting this out is preferred by some people, see
|
||||||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
|
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
|
||||||
node_modules
|
node_modules
|
||||||
build
|
|
||||||
|
@ -12,7 +12,7 @@ OPTIONS =
|
|||||||
coffeelint: path.join(__dirname, 'coffeelint.json')
|
coffeelint: path.join(__dirname, 'coffeelint.json')
|
||||||
files:
|
files:
|
||||||
coffee: [ 'lib/**/*.coffee', 'gulpfile.coffee' ]
|
coffee: [ 'lib/**/*.coffee', 'gulpfile.coffee' ]
|
||||||
app: [ 'lib/**/*.coffee' ]
|
app: [ 'lib/**/*.coffee', '!lib/**/*.spec.coffee' ]
|
||||||
tests: 'lib/**/*.spec.coffee'
|
tests: 'lib/**/*.spec.coffee'
|
||||||
json: 'lib/**/*.json'
|
json: 'lib/**/*.json'
|
||||||
dirs:
|
dirs:
|
||||||
|
@ -2,7 +2,10 @@
|
|||||||
"name": "resin",
|
"name": "resin",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "Git Push to your devices",
|
"description": "Git Push to your devices",
|
||||||
"main": "bin/resin",
|
"main": "./lib/app.js",
|
||||||
|
"bin": {
|
||||||
|
"resin": "./bin/resin"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "cult test"
|
"test": "cult test"
|
||||||
},
|
},
|
||||||
@ -38,7 +41,7 @@
|
|||||||
"rimraf": "~2.2.8",
|
"rimraf": "~2.2.8",
|
||||||
"commander": "~2.5.0",
|
"commander": "~2.5.0",
|
||||||
"mkdirp": "~0.5.0",
|
"mkdirp": "~0.5.0",
|
||||||
"resin-platform-api": "git+ssh://git@bitbucket.org/rulemotion/resin-platform-api.git#master",
|
"resin-platform-api": "git+ssh://git@bitbucket.org/rulemotion/resin-platform-api.git#6dbc6de",
|
||||||
"bluebird": "~2.3.11",
|
"bluebird": "~2.3.11",
|
||||||
"open": "0.0.5",
|
"open": "0.0.5",
|
||||||
"inquirer": "~0.8.0",
|
"inquirer": "~0.8.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user