Separate build and release

js-version
Anton Medvedev 6 years ago
parent 74cf26fd0d
commit 82de76e1d4

@ -14,10 +14,8 @@
], ],
"scripts": { "scripts": {
"test": "ava", "test": "ava",
"release": "pkg . --out-path dist && release-it --github.release --github.assets=dist/*" "build": "pkg . --out-path dist -t node10-linux-x64,node10-macos-x64,node10-win-x64",
}, "release": "npm run build && release-it --github.release --github.assets=dist/*"
"pkg": {
"scripts": "node_modules/neo-blessed/lib/**/*.js"
}, },
"keywords": [ "keywords": [
"json", "json",
@ -34,9 +32,8 @@
"node": ">=8" "node": ">=8"
}, },
"dependencies": { "dependencies": {
"@medv/blessed": "^1.0.0", "@medv/blessed": "^1.1.0",
"chalk": "^2.4.1", "chalk": "^2.4.1",
"editor-widget": "^1.1.1",
"indent-string": "^3.2.0", "indent-string": "^3.2.0",
"string-width": "^2.1.1" "string-width": "^2.1.1"
}, },

@ -48,7 +48,7 @@ function print(input, options = {}) {
for (let item of v) { for (let item of v) {
const value = typeof item === 'undefined' ? null : item // JSON.stringify compatibility const value = typeof item === 'undefined' ? null : item // JSON.stringify compatibility
output += indent(doPrint(value, path + '[' + i + ']')) output += indent(doPrint(value, path + '[' + i + ']'), config.space)
output += i++ < len - 1 ? config.comma(',') : '' output += i++ < len - 1 ? config.comma(',') : ''
output += eol() output += eol()
} }

Loading…
Cancel
Save