Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
faf55e4e31 | |||
b78fe35e88 | |||
7ab4561727 | |||
200f44a792 | |||
312dc4bd7f | |||
60bed4cb1f | |||
8831a8d173 |
@ -1,3 +1,4 @@
|
|||||||
|
# standard ci
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
@ -50,7 +51,7 @@ pages:
|
|||||||
image: hosttoday/ht-docker-node:npmpage
|
image: hosttoday/ht-docker-node:npmpage
|
||||||
stage: pages
|
stage: pages
|
||||||
script:
|
script:
|
||||||
- npmci command npmpage --host gitlab
|
- npmci command npmpage --publish gitlab
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
artifacts:
|
artifacts:
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
.idea/
|
|
||||||
compile/
|
compile/
|
||||||
coverage/
|
coverage/
|
||||||
test/
|
test/
|
||||||
|
2
dist/mod02/index.js
vendored
2
dist/mod02/index.js
vendored
@ -26,7 +26,7 @@ let mocha = function (configArg) {
|
|||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
plugins.gulpInjectModules(),
|
plugins.gulpInjectModules(),
|
||||||
plugins.through2.obj((file, enc, cb) => {
|
plugins.through2.obj((file, enc, cb) => {
|
||||||
cb(null, file);
|
cb();
|
||||||
}, (cb) => {
|
}, (cb) => {
|
||||||
cb();
|
cb();
|
||||||
})
|
})
|
||||||
|
@ -5,11 +5,13 @@ Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
|||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
[](https://gitlab.com/pushrocks/npmts)
|
[](https://gitlab.com/pushrocks/npmts)
|
||||||
[](https://github.com/pushrocks/npmts)
|
[](https://github.com/pushrocks/npmts)
|
||||||
[](https://pushrocks.gitlab.io/npmts/gitbook)
|
[](https://pushrocks.gitlab.io/npmts/)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
||||||
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
||||||
|
[](https://www.npmjs.com/package/npmts)
|
||||||
|
[](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
||||||
[](https://david-dm.org/pushrocks/npmts)
|
[](https://david-dm.org/pushrocks/npmts)
|
||||||
[](https://www.bithound.io/github/pushrocks/npmts/master/dependencies/npm)
|
[](https://www.bithound.io/github/pushrocks/npmts/master/dependencies/npm)
|
||||||
[](https://www.bithound.io/github/pushrocks/npmts)
|
[](https://www.bithound.io/github/pushrocks/npmts)
|
||||||
@ -32,11 +34,11 @@ This works on your machine and in CI. There is a prebuild docker image available
|
|||||||
[hosttoday/ht-docker-node:npmts on Dockerhub](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
[hosttoday/ht-docker-node:npmts on Dockerhub](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
||||||
|
|
||||||
For further information read the docs:
|
For further information read the docs:
|
||||||
* [1. Intro](https://pushrocks.gitlab.io/npmts/gitbook/index.md)
|
1. [Intro](https://pushrocks.gitlab.io/npmts/index.html)
|
||||||
* [2. Install](https://pushrocks.gitlab.io/npmts/gitbook/install.md)
|
2. [Install](https://pushrocks.gitlab.io/npmts/install.html)
|
||||||
* [3. Default Behaviour](https://pushrocks.gitlab.io/npmts/gitbook/default.md)
|
3. [Default Behaviour](https://pushrocks.gitlab.io/npmts/default.html)
|
||||||
* [4. Configuration](https://pushrocks.gitlab.io/npmts/gitbook/config.md)
|
4. [Configuration](https://pushrocks.gitlab.io/npmts/config.html)
|
||||||
* [5. Examples](https://pushrocks.gitlab.io/npmts/gitbook/examples.md)
|
5. [Examples](https://pushrocks.gitlab.io/npmts/examples.html)
|
||||||
* [6. Info](https://pushrocks.gitlab.io/npmts/gitbook/info.md)
|
6. [Info](https://pushrocks.gitlab.io/npmts/info.html)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https://push.rocks)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "5.5.8",
|
"version": "5.5.12",
|
||||||
"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": {
|
||||||
|
@ -32,7 +32,7 @@ let mocha = function (configArg: INpmtsConfig) {
|
|||||||
plugins.gulpInjectModules(),
|
plugins.gulpInjectModules(),
|
||||||
plugins.through2.obj(
|
plugins.through2.obj(
|
||||||
(file, enc, cb) => {
|
(file, enc, cb) => {
|
||||||
cb(null, file)
|
cb()
|
||||||
},
|
},
|
||||||
(cb) => {
|
(cb) => {
|
||||||
cb()
|
cb()
|
||||||
|
Reference in New Issue
Block a user