Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
be9e98ad0c | |||
84578e8dd0 | |||
6d759706ac | |||
2bd4063d22 | |||
c274590184 | |||
de8992da84 | |||
dc598e1627 | |||
bfcd78b169 |
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2016 Push.Rocks
|
Copyright (c) 2016 Lossless GmbH
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -10,6 +10,8 @@ Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
|||||||
## 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)
|
||||||
|
2
dist/mod00/mod00.check.js
vendored
2
dist/mod00/mod00.check.js
vendored
@ -49,7 +49,7 @@ let checkDependencies = (configArg) => {
|
|||||||
plugins.beautylog.warn(`Watch out: unused dependency "${item}"`);
|
plugins.beautylog.warn(`Watch out: unused dependency "${item}"`);
|
||||||
}
|
}
|
||||||
for (let item in unused.missing) {
|
for (let item in unused.missing) {
|
||||||
plugins.beautylog.error(`unused devDependency "${item}"`);
|
plugins.beautylog.error(`missing dependency "${item}" in package.json`);
|
||||||
}
|
}
|
||||||
if (unused.missing.length > 0) {
|
if (unused.missing.length > 0) {
|
||||||
plugins.beautylog.info('exiting due to missing dependencies in package.json');
|
plugins.beautylog.info('exiting due to missing dependencies in package.json');
|
||||||
|
4
dist/npmts.cli.js
vendored
4
dist/npmts.cli.js
vendored
@ -50,7 +50,9 @@ exports.run = () => {
|
|||||||
.then(NpmtsShip.run);
|
.then(NpmtsShip.run);
|
||||||
return done.promise;
|
return done.promise;
|
||||||
})
|
})
|
||||||
.catch((err) => { console.log(err); });
|
.catch((err) => { if (err instanceof Error) {
|
||||||
|
console.log(err);
|
||||||
|
} });
|
||||||
npmtsCli.addVersion(npmtsProjectInfo.version);
|
npmtsCli.addVersion(npmtsProjectInfo.version);
|
||||||
npmtsCli.startParse();
|
npmtsCli.startParse();
|
||||||
return done.promise;
|
return done.promise;
|
||||||
|
16
package.json
16
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "5.5.0",
|
"version": "5.5.4",
|
||||||
"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": {
|
||||||
@ -27,7 +27,7 @@
|
|||||||
"TypeScript",
|
"TypeScript",
|
||||||
"Declaration"
|
"Declaration"
|
||||||
],
|
],
|
||||||
"author": "Lossless Digital UG (haftungsbeschraenkt)",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitlab.com/pushrocks/npmts/issues"
|
"url": "https://gitlab.com/pushrocks/npmts/issues"
|
||||||
@ -42,7 +42,7 @@
|
|||||||
"@types/minimatch": "^2.0.29",
|
"@types/minimatch": "^2.0.29",
|
||||||
"@types/q": "^0.x.x",
|
"@types/q": "^0.x.x",
|
||||||
"@types/shelljs": "^0.3.32",
|
"@types/shelljs": "^0.3.32",
|
||||||
"babel-preset-es2015": "^6.16.0",
|
"babel-preset-es2015": "^6.18.0",
|
||||||
"beautylog": "6.0.0",
|
"beautylog": "6.0.0",
|
||||||
"depcheck": "^0.6.4",
|
"depcheck": "^0.6.4",
|
||||||
"early": "^2.0.35",
|
"early": "^2.0.35",
|
||||||
@ -52,24 +52,24 @@
|
|||||||
"gulp-inject-modules": "^1.0.0",
|
"gulp-inject-modules": "^1.0.0",
|
||||||
"gulp-istanbul": "^1.1.1",
|
"gulp-istanbul": "^1.1.1",
|
||||||
"gulp-mocha": "^3.0.1",
|
"gulp-mocha": "^3.0.1",
|
||||||
"gulp-sourcemaps": "^2.1.1",
|
"gulp-sourcemaps": "^2.2.0",
|
||||||
"gulp-typedoc": "^2.0.0",
|
"gulp-typedoc": "^2.0.0",
|
||||||
"lodash": "^4.16.4",
|
"lodash": "^4.16.4",
|
||||||
"npmextra": "^2.0.3",
|
"npmextra": "^2.0.3",
|
||||||
"projectinfo": "1.0.3",
|
"projectinfo": "1.0.4",
|
||||||
"q": "^1.4.1",
|
"q": "^1.4.1",
|
||||||
"shelljs": "^0.7.4",
|
"shelljs": "^0.7.5",
|
||||||
"smartchok": "^1.0.2",
|
"smartchok": "^1.0.2",
|
||||||
"smartcli": "1.0.10",
|
"smartcli": "1.0.10",
|
||||||
"smartcov": "1.0.0",
|
"smartcov": "1.0.0",
|
||||||
"smartenv": "1.2.5",
|
"smartenv": "1.2.5",
|
||||||
"smartfile": "4.0.24",
|
"smartfile": "4.1.0",
|
||||||
"smartpath": "3.2.5",
|
"smartpath": "3.2.5",
|
||||||
"smartstream": "^1.0.5",
|
"smartstream": "^1.0.5",
|
||||||
"smartstring": "^2.0.17",
|
"smartstring": "^2.0.17",
|
||||||
"smartsystem": "^1.0.9",
|
"smartsystem": "^1.0.9",
|
||||||
"source-map-support": "^0.4.5",
|
"source-map-support": "^0.4.5",
|
||||||
"tsn": "^2.0.11",
|
"tsn": "^2.0.13",
|
||||||
"typedoc": "^0.5.0",
|
"typedoc": "^0.5.0",
|
||||||
"typescript": "next",
|
"typescript": "next",
|
||||||
"typings-global": "^1.0.14"
|
"typings-global": "^1.0.14"
|
||||||
|
@ -54,7 +54,7 @@ let checkDependencies = (configArg) => {
|
|||||||
plugins.beautylog.warn(`Watch out: unused dependency "${item}"`)
|
plugins.beautylog.warn(`Watch out: unused dependency "${item}"`)
|
||||||
}
|
}
|
||||||
for (let item in unused.missing) {
|
for (let item in unused.missing) {
|
||||||
plugins.beautylog.error(`unused devDependency "${item}"`)
|
plugins.beautylog.error(`missing dependency "${item}" in package.json`)
|
||||||
}
|
}
|
||||||
if (unused.missing.length > 0) {
|
if (unused.missing.length > 0) {
|
||||||
plugins.beautylog.info('exiting due to missing dependencies in package.json')
|
plugins.beautylog.info('exiting due to missing dependencies in package.json')
|
||||||
|
@ -53,7 +53,7 @@ export let run = () => {
|
|||||||
|
|
||||||
return done.promise
|
return done.promise
|
||||||
})
|
})
|
||||||
.catch((err) => { console.log(err) })
|
.catch((err) => { if (err instanceof Error) { console.log(err) } } )
|
||||||
npmtsCli.addVersion(npmtsProjectInfo.version)
|
npmtsCli.addVersion(npmtsProjectInfo.version)
|
||||||
npmtsCli.startParse()
|
npmtsCli.startParse()
|
||||||
return done.promise
|
return done.promise
|
||||||
|
Reference in New Issue
Block a user