Compare commits

..

4 Commits

Author SHA1 Message Date
889a3fdc5a 1.2.28 2019-05-09 10:06:59 +02:00
565c002127 fix(core): update 2019-05-09 10:06:59 +02:00
6fec1a00ea 1.2.27 2018-10-29 01:09:46 +01:00
e1f2c28718 fix(ci): remove npmts from build process 2018-10-29 01:09:45 +01:00
6 changed files with 695 additions and 569 deletions

View File

@ -4,10 +4,7 @@
"cli": true "cli": true
}, },
"npmci": { "npmci": {
"npmGlobalTools": [ "npmGlobalTools": [],
"@gitzone/npmts",
"ts-node"
],
"npmAccessLevel": "public" "npmAccessLevel": "public"
} }
} }

1223
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/npmdocker", "name": "@gitzone/npmdocker",
"version": "1.2.26", "version": "1.2.28",
"private": false, "private": false,
"description": "develop npm modules cross platform with docker", "description": "develop npm modules cross platform with docker",
"main": "dist/index.js", "main": "dist/index.js",
@ -10,7 +10,7 @@
}, },
"scripts": { "scripts": {
"test": "(npm run clean && npm run setupCheck && npm run testStandard && npm run testSpeed)", "test": "(npm run clean && npm run setupCheck && npm run testStandard && npm run testSpeed)",
"build": "tsbuild", "build": "(tsbuild)",
"testStandard": "(cd test/ && node ../cli.ts.js)", "testStandard": "(cd test/ && node ../cli.ts.js)",
"testSpeed": "(cd test/ && node ../cli.ts.js speedtest)", "testSpeed": "(cd test/ && node ../cli.ts.js speedtest)",
"testClean": "(cd test/ && node ../cli.ts.js clean --all)", "testClean": "(cd test/ && node ../cli.ts.js clean --all)",
@ -32,25 +32,24 @@
}, },
"homepage": "https://gitlab.com/gitzone/npmdocker#README", "homepage": "https://gitlab.com/gitzone/npmdocker#README",
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.0.22", "@gitzone/tsbuild": "^2.1.11",
"@gitzone/tsrun": "^1.1.13", "@gitzone/tsrun": "^1.2.6",
"@gitzone/tstest": "^1.0.15", "@gitzone/tstest": "^1.0.20",
"@pushrocks/tapbundle": "^3.0.7", "@pushrocks/tapbundle": "^3.0.9",
"@types/node": "^10.12.0", "@types/node": "^12.0.0",
"tslint": "^5.11.0", "tslint": "^5.16.0",
"tslint-config-prettier": "^1.15.0" "tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/npmextra": "^3.0.1", "@pushrocks/npmextra": "^3.0.1",
"@pushrocks/projectinfo": "^4.0.2", "@pushrocks/projectinfo": "^4.0.2",
"@pushrocks/qenv": "^2.0.2", "@pushrocks/qenv": "^4.0.0",
"@pushrocks/smartanalytics": "^2.0.15", "@pushrocks/smartanalytics": "^2.0.15",
"@pushrocks/smartcli": "^3.0.6", "@pushrocks/smartcli": "^3.0.7",
"@pushrocks/smartfile": "^6.0.8", "@pushrocks/smartfile": "^7.0.2",
"@pushrocks/smartpromise": "^2.0.5", "@pushrocks/smartpromise": "^3.0.2",
"@pushrocks/smartshell": "^2.0.8", "@pushrocks/smartshell": "^2.0.13",
"@pushrocks/smartstring": "^3.0.4", "@pushrocks/smartstring": "^3.0.10",
"@types/shelljs": "^0.8.0", "@types/shelljs": "^0.8.5"
"beautylog": "^6.1.10"
} }
} }

View File

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

View File

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

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