replace gulp
This commit is contained in:
parent
cf438ae431
commit
0f0592cdaf
@ -1,6 +1,11 @@
|
|||||||
# standard ci
|
# gitzone standard
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- .yarn/
|
||||||
|
key: "$CI_BUILD_STAGE"
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
- release
|
- release
|
||||||
@ -11,6 +16,7 @@ testLEGACY:
|
|||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test legacy
|
- npmci test legacy
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
@ -19,6 +25,7 @@ testLTS:
|
|||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test lts
|
- npmci test lts
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
||||||
@ -26,6 +33,7 @@ testSTABLE:
|
|||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test stable
|
- npmci test stable
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
||||||
@ -52,11 +60,11 @@ pages:
|
|||||||
stage: pages
|
stage: pages
|
||||||
script:
|
script:
|
||||||
- npmci command yarn global add npmpage
|
- npmci command yarn global add npmpage
|
||||||
- npmci command npmpage
|
- npmci command npmpage --publish gitlab
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
artifacts:
|
artifacts:
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
paths:
|
paths:
|
||||||
|
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -1,8 +1,8 @@
|
|||||||
|
"use strict";
|
||||||
/* ================================================== *
|
/* ================================================== *
|
||||||
**** NPMTS ****
|
**** NPMTS ****
|
||||||
Fabulous TypeScript development
|
Fabulous TypeScript development
|
||||||
* ================================================== */
|
* ================================================== */
|
||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const early = require("early");
|
const early = require("early");
|
||||||
early.start('NPMTS');
|
early.start('NPMTS');
|
||||||
|
2
dist/mod02/mod02.plugins.d.ts
vendored
2
dist/mod02/mod02.plugins.d.ts
vendored
@ -1,5 +1,5 @@
|
|||||||
export * from '../npmts.plugins';
|
export * from '../npmts.plugins';
|
||||||
import * as gulp from 'gulp';
|
import * as gulp from 'smartgulp';
|
||||||
import * as gulpFunction from 'gulp-function';
|
import * as gulpFunction from 'gulp-function';
|
||||||
import * as gulpSourcemaps from 'gulp-sourcemaps';
|
import * as gulpSourcemaps from 'gulp-sourcemaps';
|
||||||
import * as gulpTypeScript from 'gulp-typescript';
|
import * as gulpTypeScript from 'gulp-typescript';
|
||||||
|
2
dist/mod02/mod02.plugins.js
vendored
2
dist/mod02/mod02.plugins.js
vendored
@ -4,7 +4,7 @@ function __export(m) {
|
|||||||
}
|
}
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
__export(require("../npmts.plugins"));
|
__export(require("../npmts.plugins"));
|
||||||
const gulp = require("gulp");
|
const gulp = require("smartgulp");
|
||||||
exports.gulp = gulp;
|
exports.gulp = gulp;
|
||||||
const gulpFunction = require("gulp-function");
|
const gulpFunction = require("gulp-function");
|
||||||
exports.gulpFunction = gulpFunction;
|
exports.gulpFunction = gulpFunction;
|
||||||
|
19
package.json
19
package.json
@ -34,15 +34,13 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/gulp": "^4.0.2",
|
|
||||||
"@types/gulp-sourcemaps": "0.0.30",
|
"@types/gulp-sourcemaps": "0.0.30",
|
||||||
"@types/minimatch": "^2.0.29",
|
"@types/minimatch": "^2.0.29",
|
||||||
"@types/through2": "^2.0.32",
|
"@types/through2": "^2.0.32",
|
||||||
"beautylog": "6.1.5",
|
"beautylog": "6.1.10",
|
||||||
"depcheck": "^0.6.7",
|
"depcheck": "^0.6.7",
|
||||||
"early": "^2.0.38",
|
"early": "^2.1.1",
|
||||||
"gulp": "3.9.1",
|
"gulp-function": "^2.2.9",
|
||||||
"gulp-function": "^2.2.3",
|
|
||||||
"gulp-sourcemaps": "^2.6.0",
|
"gulp-sourcemaps": "^2.6.0",
|
||||||
"gulp-typescript": "^3.1.6",
|
"gulp-typescript": "^3.1.6",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
@ -50,20 +48,21 @@
|
|||||||
"projectinfo": "^3.0.2",
|
"projectinfo": "^3.0.2",
|
||||||
"smartanalytics": "^1.0.6",
|
"smartanalytics": "^1.0.6",
|
||||||
"smartchok": "^1.0.8",
|
"smartchok": "^1.0.8",
|
||||||
"smartcli": "^2.0.1",
|
"smartcli": "^2.0.6",
|
||||||
"smartcov": "^1.0.2",
|
"smartcov": "^1.0.2",
|
||||||
"smartfile": "^4.1.9",
|
"smartfile": "^4.2.4",
|
||||||
|
"smartgulp": "^1.0.4",
|
||||||
"smartpath": "^3.2.8",
|
"smartpath": "^3.2.8",
|
||||||
"smartq": "^1.1.1",
|
"smartq": "^1.1.1",
|
||||||
"smartstream": "^1.0.8",
|
"smartstream": "^1.0.8",
|
||||||
"smartstring": "^2.0.24",
|
"smartstring": "^2.0.24",
|
||||||
"smartsystem": "^1.0.12",
|
"smartsystem": "^1.0.12",
|
||||||
"source-map-support": "^0.4.14",
|
"source-map-support": "^0.4.15",
|
||||||
"tapbuffer": "^1.0.11",
|
"tapbuffer": "^1.0.11",
|
||||||
"through2": "^2.0.3",
|
"through2": "^2.0.3",
|
||||||
"tsn": "^2.0.15",
|
"tsn": "^2.0.15",
|
||||||
"typescript": "^2.2.2",
|
"typescript": "^2.3.2",
|
||||||
"typings-global": "^1.0.14"
|
"typings-global": "^1.0.16"
|
||||||
},
|
},
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
export * from '../npmts.plugins'
|
export * from '../npmts.plugins'
|
||||||
|
|
||||||
import * as gulp from 'gulp'
|
import * as gulp from 'smartgulp'
|
||||||
import * as gulpFunction from 'gulp-function'
|
import * as gulpFunction from 'gulp-function'
|
||||||
import * as gulpSourcemaps from 'gulp-sourcemaps'
|
import * as gulpSourcemaps from 'gulp-sourcemaps'
|
||||||
import * as gulpTypeScript from 'gulp-typescript'
|
import * as gulpTypeScript from 'gulp-typescript'
|
||||||
|
Loading…
Reference in New Issue
Block a user