mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-09 14:00:03 +00:00
.
This commit is contained in:
parent
126bc555e3
commit
aaad210901
@ -4,15 +4,11 @@ platform:
|
|||||||
- x64
|
- x64
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
nodejs_version: "8"
|
nodejs_version: "7"
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
- '%USERPROFILE%\.electron'
|
- '%USERPROFILE%\.electron'
|
||||||
|
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
|
|
||||||
skip_tags: true
|
skip_tags: true
|
||||||
|
|
||||||
version: "{build}"
|
version: "{build}"
|
||||||
|
@ -68,7 +68,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack --config app/webpack.config.js && webpack --config terminus-core/webpack.config.js && webpack --config terminus-settings/webpack.config.js && webpack --config terminus-terminal/webpack.config.js && webpack --config terminus-settings/webpack.config.js && webpack --config terminus-plugin-manager/webpack.config.js && webpack --config terminus-community-color-schemes/webpack.config.js",
|
"build": "webpack --color --config app/webpack.config.js && webpack --color --config terminus-core/webpack.config.js && webpack --color --config terminus-settings/webpack.config.js && webpack --color --config terminus-terminal/webpack.config.js && webpack --color --config terminus-settings/webpack.config.js && webpack --color --config terminus-plugin-manager/webpack.config.js && webpack --color --config terminus-community-color-schemes/webpack.config.js",
|
||||||
"watch": "webpack --progress --color --watch",
|
"watch": "webpack --progress --color --watch",
|
||||||
"start": "cross-env DEV=1 electron --js-flags='--ignition' app --debug",
|
"start": "cross-env DEV=1 electron --js-flags='--ignition' app --debug",
|
||||||
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
|
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
|
||||||
|
@ -6,10 +6,12 @@ const log = require('npmlog')
|
|||||||
|
|
||||||
log.info('deps', 'app')
|
log.info('deps', 'app')
|
||||||
sh.exec('npm prune')
|
sh.exec('npm prune')
|
||||||
|
sh.exec('npm install')
|
||||||
sh.exec('npm update --dev')
|
sh.exec('npm update --dev')
|
||||||
|
|
||||||
sh.cd('app')
|
sh.cd('app')
|
||||||
sh.exec('npm prune')
|
sh.exec('npm prune')
|
||||||
|
sh.exec('npm install')
|
||||||
sh.exec('npm update --dev')
|
sh.exec('npm update --dev')
|
||||||
sh.cd('..')
|
sh.cd('..')
|
||||||
|
|
||||||
@ -17,6 +19,7 @@ vars.builtinPlugins.forEach(plugin => {
|
|||||||
log.info('deps', plugin)
|
log.info('deps', plugin)
|
||||||
sh.cd(plugin)
|
sh.cd(plugin)
|
||||||
sh.exec('npm prune')
|
sh.exec('npm prune')
|
||||||
|
sh.exec('npm install')
|
||||||
sh.exec('npm update --dev')
|
sh.exec('npm update --dev')
|
||||||
sh.cd('..')
|
sh.cd('..')
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user