Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
559b5553eb | |||
87ceed6f8f | |||
ee36914a42 | |||
7dc6cdb250 | |||
3ea6585992 | |||
0f0592cdaf | |||
cf438ae431 | |||
6cbf7cedc8 | |||
77bba7f865 | |||
49fc7e4687 | |||
7ee0c349e3 | |||
f706376e48 |
@ -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');
|
||||||
|
4
dist/mod02/index.js
vendored
4
dist/mod02/index.js
vendored
@ -28,7 +28,7 @@ let tap = function (configArg) {
|
|||||||
* handle the testable files
|
* handle the testable files
|
||||||
*/
|
*/
|
||||||
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
plugins.smartgulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
@ -47,7 +47,7 @@ let tap = function (configArg) {
|
|||||||
* handle the test files
|
* handle the test files
|
||||||
*/
|
*/
|
||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
plugins.smartgulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
emitDecoratorMetadata: true,
|
emitDecoratorMetadata: true,
|
||||||
|
4
dist/mod02/mod02.plugins.d.ts
vendored
4
dist/mod02/mod02.plugins.d.ts
vendored
@ -1,8 +1,8 @@
|
|||||||
export * from '../npmts.plugins';
|
export * from '../npmts.plugins';
|
||||||
import * as gulp from 'gulp';
|
|
||||||
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';
|
||||||
import * as smartcov from 'smartcov';
|
import * as smartcov from 'smartcov';
|
||||||
|
import * as smartgulp from 'smartgulp';
|
||||||
import * as tapbuffer from 'tapbuffer';
|
import * as tapbuffer from 'tapbuffer';
|
||||||
export { gulp, gulpFunction, gulpSourcemaps, gulpTypeScript, smartcov, tapbuffer };
|
export { gulpFunction, gulpSourcemaps, gulpTypeScript, smartcov, smartgulp, tapbuffer };
|
||||||
|
4
dist/mod02/mod02.plugins.js
vendored
4
dist/mod02/mod02.plugins.js
vendored
@ -4,8 +4,6 @@ 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");
|
|
||||||
exports.gulp = gulp;
|
|
||||||
const gulpFunction = require("gulp-function");
|
const gulpFunction = require("gulp-function");
|
||||||
exports.gulpFunction = gulpFunction;
|
exports.gulpFunction = gulpFunction;
|
||||||
const gulpSourcemaps = require("gulp-sourcemaps");
|
const gulpSourcemaps = require("gulp-sourcemaps");
|
||||||
@ -14,5 +12,7 @@ const gulpTypeScript = require("gulp-typescript");
|
|||||||
exports.gulpTypeScript = gulpTypeScript;
|
exports.gulpTypeScript = gulpTypeScript;
|
||||||
const smartcov = require("smartcov");
|
const smartcov = require("smartcov");
|
||||||
exports.smartcov = smartcov;
|
exports.smartcov = smartcov;
|
||||||
|
const smartgulp = require("smartgulp");
|
||||||
|
exports.smartgulp = smartgulp;
|
||||||
const tapbuffer = require("tapbuffer");
|
const tapbuffer = require("tapbuffer");
|
||||||
exports.tapbuffer = tapbuffer;
|
exports.tapbuffer = tapbuffer;
|
||||||
|
@ -2,9 +2,7 @@
|
|||||||
name: config
|
name: config
|
||||||
---
|
---
|
||||||
# Configuration
|
# Configuration
|
||||||
## of npmts
|
npmts can be configured to your needs.
|
||||||
|
|
||||||
npmts can be configured to your needs:
|
|
||||||
|
|
||||||
### npmextra.json
|
### npmextra.json
|
||||||
the npmts section in npmextra.json can be used to configure npmts.
|
the npmts section in npmextra.json can be used to configure npmts.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name: Default Behaviour
|
name: Default Behaviour
|
||||||
---
|
---
|
||||||
# Default Behaviour
|
# Default Behaviour
|
||||||
## of npmts
|
when you don't configure it otherwise.
|
||||||
|
|
||||||
1. **Config:** Check config in ./npmextra.json (Check out [npmextra](https://www.npmjs.com/package/npmextra))
|
1. **Config:** Check config in ./npmextra.json (Check out [npmextra](https://www.npmjs.com/package/npmextra))
|
||||||
1. **Clean:** Clean up from any previous builds (old js files)
|
1. **Clean:** Clean up from any previous builds (old js files)
|
||||||
|
@ -2,14 +2,16 @@
|
|||||||
name: Examples
|
name: Examples
|
||||||
---
|
---
|
||||||
# Examples
|
# Examples
|
||||||
## of modules that use npmts
|
modules that use npmts in theis development workflow
|
||||||
|
|
||||||
Module Name | Description
|
Module Name | Description
|
||||||
--- | ---
|
--- | ---
|
||||||
|
[gitzone](https://www.npmjs.com/package/gitzone) | fast npm module prototyping
|
||||||
[gulp-browser](https://www.npmjs.com/package/gulp-browser) | browserify for gulp
|
[gulp-browser](https://www.npmjs.com/package/gulp-browser) | browserify for gulp
|
||||||
|
[npmdocker](https://www.npmjs.com/package/npmdocker) | dockerized npm development
|
||||||
|
[smartcli](https://www.npmjs.com/package/smartcli) | easy cli tool creation
|
||||||
|
|
||||||
|
> There are tons more... We will add them here over time.
|
||||||
> We will add more options over time.
|
|
||||||
|
|
||||||
### Tips and tricks:
|
### Tips and tricks:
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name: Start
|
name: Start
|
||||||
---
|
---
|
||||||
# npmts
|
# npmts
|
||||||
## Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
||||||
|
|
||||||
## Availabililty
|
## Availabililty
|
||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
@ -39,4 +39,4 @@ This works on your machine and in CI. There is a prebuild docker image available
|
|||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https:/git.zone)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Install npmts
|
# Install npmts
|
||||||
First install npmts globally, then install the npmts-g locally.
|
Get started with TypeScript awesomeness.
|
||||||
|
|
||||||
> **npmts-g* checks if the global version of npmts suffices the modules requirements.
|
> **npmts-g* checks if the global version of npmts suffices the modules requirements.
|
||||||
If not it installs npmts locally in the right version during npm install.
|
If not it installs npmts locally in the right version during npm install.
|
||||||
|
25
package.json
25
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "7.0.10",
|
"version": "7.0.16",
|
||||||
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
@ -34,36 +34,35 @@
|
|||||||
},
|
},
|
||||||
"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",
|
||||||
"npmextra": "^2.0.5",
|
"npmextra": "^2.0.5",
|
||||||
"projectinfo": "^3.0.2",
|
"projectinfo": "^3.0.2",
|
||||||
"smartanalytics": "^1.0.5",
|
"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.7",
|
||||||
|
"smartgulp": "^1.0.5",
|
||||||
"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.10",
|
"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": {}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
* handle the testable files
|
* handle the testable files
|
||||||
*/
|
*/
|
||||||
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.gulp.src([ plugins.path.join(paths.cwd, './ts/**/*.ts') ]),
|
plugins.smartgulp.src([ plugins.path.join(paths.cwd, './ts/**/*.ts') ]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
@ -44,7 +44,7 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
* handle the test files
|
* handle the test files
|
||||||
*/
|
*/
|
||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.gulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
|
plugins.smartgulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
emitDecoratorMetadata: true,
|
emitDecoratorMetadata: true,
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
export * from '../npmts.plugins'
|
export * from '../npmts.plugins'
|
||||||
|
|
||||||
import * as gulp from 'gulp'
|
|
||||||
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'
|
||||||
import * as smartcov from 'smartcov'
|
import * as smartcov from 'smartcov'
|
||||||
|
import * as smartgulp from 'smartgulp'
|
||||||
import * as tapbuffer from 'tapbuffer'
|
import * as tapbuffer from 'tapbuffer'
|
||||||
|
|
||||||
export {
|
export {
|
||||||
gulp,
|
|
||||||
gulpFunction,
|
gulpFunction,
|
||||||
gulpSourcemaps,
|
gulpSourcemaps,
|
||||||
gulpTypeScript,
|
gulpTypeScript,
|
||||||
smartcov,
|
smartcov,
|
||||||
|
smartgulp,
|
||||||
tapbuffer
|
tapbuffer
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user