fix(core): update

This commit is contained in:
Philipp Kunz 2019-05-09 10:06:59 +02:00
parent 6fec1a00ea
commit 565c002127
5 changed files with 691 additions and 562 deletions

1221
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -32,25 +32,24 @@
},
"homepage": "https://gitlab.com/gitzone/npmdocker#README",
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tsrun": "^1.1.13",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^10.12.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
"@gitzone/tsbuild": "^2.1.11",
"@gitzone/tsrun": "^1.2.6",
"@gitzone/tstest": "^1.0.20",
"@pushrocks/tapbundle": "^3.0.9",
"@types/node": "^12.0.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@pushrocks/npmextra": "^3.0.1",
"@pushrocks/projectinfo": "^4.0.2",
"@pushrocks/qenv": "^2.0.2",
"@pushrocks/qenv": "^4.0.0",
"@pushrocks/smartanalytics": "^2.0.15",
"@pushrocks/smartcli": "^3.0.6",
"@pushrocks/smartfile": "^6.0.8",
"@pushrocks/smartpromise": "^2.0.5",
"@pushrocks/smartshell": "^2.0.8",
"@pushrocks/smartstring": "^3.0.4",
"@types/shelljs": "^0.8.0",
"beautylog": "^6.1.10"
"@pushrocks/smartcli": "^3.0.7",
"@pushrocks/smartfile": "^7.0.2",
"@pushrocks/smartpromise": "^3.0.2",
"@pushrocks/smartshell": "^2.0.13",
"@pushrocks/smartstring": "^3.0.10",
"@types/shelljs": "^0.8.5"
}
}

View File

@ -10,7 +10,7 @@
* Your Open Source team at Lossless GmbH :)
*/
import * as smartanalytics from '@pushrocks/smartanalytics';
let npmdockerAnalytics = new smartanalytics.Analytics({
const npmdockerAnalytics = new smartanalytics.Analytics({
apiEndPoint: 'https://pubapi.lossless.one',
appName: 'npmdocker',
projectId: 'gitzone'

View File

@ -9,7 +9,6 @@ let npmdockerCli = new plugins.smartcli.Smartcli();
export let run = () => {
npmdockerCli.standardTask().subscribe(async argvArg => {
plugins.beautylog.figletSync('npmdocker');
let configArg = await ConfigModule.run().then(DockerModule.run);
if (configArg.exitCode === 0) {
plugins.beautylog.success('container ended all right!');

0
ts/npmdocker.logging.ts Normal file
View File