Compare commits
No commits in common. "master" and "v2.2.3" have entirely different histories.
25
.gitignore
vendored
25
.gitignore
vendored
@ -1,20 +1,7 @@
|
|||||||
.nogit/
|
.idea/
|
||||||
|
.c9/
|
||||||
# artifacts
|
|
||||||
coverage/
|
|
||||||
public/
|
|
||||||
pages/
|
|
||||||
|
|
||||||
# installs
|
|
||||||
node_modules/
|
node_modules/
|
||||||
|
test/**/node_modules/
|
||||||
# caches
|
test/**/typings/
|
||||||
.yarn/
|
ts/*.js
|
||||||
.cache/
|
ts/*.js.map
|
||||||
.rpt2_cache
|
|
||||||
|
|
||||||
# builds
|
|
||||||
dist/
|
|
||||||
dist_*/
|
|
||||||
|
|
||||||
# custom
|
|
127
.gitlab-ci.yml
127
.gitlab-ci.yml
@ -1,127 +0,0 @@
|
|||||||
# gitzone ci_default
|
|
||||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
|
||||||
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- .npmci_cache/
|
|
||||||
key: '$CI_BUILD_STAGE'
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- security
|
|
||||||
- test
|
|
||||||
- release
|
|
||||||
- metadata
|
|
||||||
|
|
||||||
# ====================
|
|
||||||
# security stage
|
|
||||||
# ====================
|
|
||||||
mirror:
|
|
||||||
stage: security
|
|
||||||
script:
|
|
||||||
- npmci git mirror
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
audit:
|
|
||||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
|
||||||
stage: security
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci command npm install --ignore-scripts
|
|
||||||
- npmci command npm config set registry https://registry.npmjs.org
|
|
||||||
- npmci command npm audit --audit-level=high
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
# ====================
|
|
||||||
# test stage
|
|
||||||
# ====================
|
|
||||||
|
|
||||||
testStable:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install stable
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- priv
|
|
||||||
|
|
||||||
testBuild:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install stable
|
|
||||||
- npmci npm install
|
|
||||||
- npmci command npm run build
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
release:
|
|
||||||
stage: release
|
|
||||||
script:
|
|
||||||
- npmci node install stable
|
|
||||||
- npmci npm publish
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
# ====================
|
|
||||||
# metadata stage
|
|
||||||
# ====================
|
|
||||||
codequality:
|
|
||||||
stage: metadata
|
|
||||||
allow_failure: true
|
|
||||||
script:
|
|
||||||
- npmci command npm install -g tslint typescript
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci npm install
|
|
||||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- priv
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npmci trigger
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
pages:
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npmci node install lts
|
|
||||||
- npmci command npm install -g @gitzone/tsdoc
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci npm install
|
|
||||||
- npmci command tsdoc
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1 week
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
allow_failure: true
|
|
6
.npmignore
Normal file
6
.npmignore
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
.idea/
|
||||||
|
support
|
||||||
|
compile
|
||||||
|
test/
|
||||||
|
examples
|
||||||
|
.gitignore
|
11
.travis.yml
Normal file
11
.travis.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- "4.2.4"
|
||||||
|
deploy:
|
||||||
|
provider: npm
|
||||||
|
email: npm@lossless.digital
|
||||||
|
api_key:
|
||||||
|
secure: k075QdAcmEdmAoVaP5vclLnZmhbZB39v85VIUMWAKXbIAU+liHrYZRlIEYfAaIUrf6sha+zAo/U/vjAN7c5ArB7J/HjCLJ3lsi2fWtaSRlYQrYX9/EhU0S+YZjRE8Jrn4hGTcce6I2mANBnEzvzlXrlKaqVvSqOqTO9nJ5aDBCGa5XT3EwlHKkRlAlL3ZOLrRg38R343E8ifZBsbn9G0e+RgDt0sic3WD8NME9lpsQ/99UZKH00duHbhF9nme5Sjdh86y01hvsaBf+CLR4gfS2IntnrCSrZbETFrsOBUyMnJZDQ3qlrjcEaiTkpJ4iSIqr+ftwGMMD6S1MxCTPqkp64UIeMz2Tg41HqoaeIg7z8cF0APv6M9ZAdWhsU43GqsMe70dK900JZpQAkQxMf/6NpPpGfZug6TwqLYSIRzvjvNrhYfuyoGfXdAxrM3SJMkIq6rwE+T/y36kZaC3CrQRyNZypNz0vW1M9HLjJUi2vO0U/CDn8tvi1p6ChrDXDfV3H2UIAMHFlAF+GrT7dMWwD+p+d8mc9gpAFEF9zMqAIJamPhwboJxoHjKQrqrq5czNm75ETL77AzfnU6CfQlG5dTIFnGId8y0ZxXvtpBruDoyC1+ZF23MYZmb+ipxQZM2oLCjNLeL3aEePc/JlSm6Gn8w3sIkZTG261F0XZxdApw=
|
||||||
|
on:
|
||||||
|
tags: true
|
||||||
|
repo: pushrocks/npmts
|
29
.vscode/launch.json
vendored
29
.vscode/launch.json
vendored
@ -1,29 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "current file",
|
|
||||||
"type": "node",
|
|
||||||
"request": "launch",
|
|
||||||
"args": [
|
|
||||||
"${relativeFile}"
|
|
||||||
],
|
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"protocol": "inspector",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test.ts",
|
|
||||||
"type": "node",
|
|
||||||
"request": "launch",
|
|
||||||
"args": [
|
|
||||||
"test/test.ts"
|
|
||||||
],
|
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"protocol": "inspector",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
26
.vscode/settings.json
vendored
26
.vscode/settings.json
vendored
@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"json.schemas": [
|
|
||||||
{
|
|
||||||
"fileMatch": ["/npmextra.json"],
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"npmci": {
|
|
||||||
"type": "object",
|
|
||||||
"description": "settings for npmci"
|
|
||||||
},
|
|
||||||
"gitzone": {
|
|
||||||
"type": "object",
|
|
||||||
"description": "settings for gitzone",
|
|
||||||
"properties": {
|
|
||||||
"projectType": {
|
|
||||||
"type": "string",
|
|
||||||
"enum": ["website", "element", "service", "npm"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
# Contribution Guide
|
|
||||||
|
|
||||||
This module is developed on the fabulous GitLab.com:
|
|
||||||
https://gitlab.com/pushrocks/npmts
|
|
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2016 Lossless GmbH
|
Copyright (c) 2016 Push.Rocks
|
||||||
|
|
||||||
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
|
1
README-dev.md
Normal file
1
README-dev.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# README-dev
|
63
README.md
Normal file
63
README.md
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
# npmts
|
||||||
|
Write npm modules with TypeScript without hassle.
|
||||||
|
|
||||||
|
## Status
|
||||||
|
[](https://coveralls.io/github/pushrocks/npmts?branch=master)
|
||||||
|
|
||||||
|
## How to use npmts
|
||||||
|
|
||||||
|
### Install
|
||||||
|
First install npmts as dev dependency:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install npmts --save-dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Then use it in package.json's script section to trigger a build:
|
||||||
|
|
||||||
|
```json
|
||||||
|
"scripts": {
|
||||||
|
"test": "npmts"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Default behaviour
|
||||||
|
by default npmts looks for `./ts/index.ts` and `./ts/test.ts` that will compile to
|
||||||
|
`./index.js` and `./test.js`
|
||||||
|
|
||||||
|
#### Declaration files
|
||||||
|
**npmts** also creates an `index.d.ts` declaration file by default.
|
||||||
|
You can reference it in your package.json like this:
|
||||||
|
|
||||||
|
```json
|
||||||
|
"main": "index.js",
|
||||||
|
"typings": "./index.d.ts",
|
||||||
|
```
|
||||||
|
|
||||||
|
When requiring the module from other TypeScript files,
|
||||||
|
the TypeScript Compiler will use the declaration file to resolve typings.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Custom behaviour
|
||||||
|
NPMTS looks for an npmts.json at the root of your package.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"mode":"custom",
|
||||||
|
"ts":{
|
||||||
|
"./customdir/custom.ts":"./customcompiled.js"
|
||||||
|
},
|
||||||
|
"typings":[
|
||||||
|
"./customdir"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
* **mode** can be "default" or "custom"
|
||||||
|
* **ts** You can list as many TypeScript files as you like. The key represents the source TypeScript file, the value the output file.
|
||||||
|
* **typings** is an array of all direcories that have a typings.json present. Uses the new typings tool from npm.
|
||||||
|
|
||||||
|
## Readme for Devs
|
||||||
|
There is a [README-dev.md](README-dev.md) in the repo.
|
||||||
|
This is only of interest for you when looking to contribute to, improve or build upon this package.
|
4
cli.js
4
cli.js
@ -1,4 +0,0 @@
|
|||||||
#!/usr/bin/env node
|
|
||||||
process.env.CLI_CALL = 'true';
|
|
||||||
const cliTool = require('./dist_ts/index');
|
|
||||||
cliTool.runCli();
|
|
@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/env node
|
|
||||||
process.env.CLI_CALL = 'true';
|
|
||||||
require('@gitzone/tsrun');
|
|
||||||
const cliTool = require('./ts/index');
|
|
||||||
cliTool.runCli();
|
|
35
compile/compile.js
Normal file
35
compile/compile.js
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
// import gulp
|
||||||
|
var plugins = {
|
||||||
|
beautylog: require("beautylog"),
|
||||||
|
gulp: require("gulp"),
|
||||||
|
g:{
|
||||||
|
typescript: require("gulp-typescript"),
|
||||||
|
insert: require("gulp-insert")
|
||||||
|
},
|
||||||
|
mergeStream: require("merge2")
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
plugins.beautylog.log('now compiling NPMTS');
|
||||||
|
|
||||||
|
plugins.gulp.task('indexTS', function() {
|
||||||
|
var tsResult = plugins.gulp.src('../ts/index.ts')
|
||||||
|
.pipe(plugins.g.typescript({
|
||||||
|
out:"index.js",
|
||||||
|
declaration:true
|
||||||
|
}));
|
||||||
|
|
||||||
|
return plugins.mergeStream([
|
||||||
|
tsResult.dts.pipe(plugins.gulp.dest('../')),
|
||||||
|
tsResult.js
|
||||||
|
.pipe(plugins.g.insert.prepend('#!/usr/bin/env node\n\n'))
|
||||||
|
.pipe(plugins.gulp.dest('../'))
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
|
plugins.gulp.task('default',['indexTS'], function() {
|
||||||
|
plugins.beautylog.success('Typescript compiled');
|
||||||
|
});
|
||||||
|
|
||||||
|
plugins.gulp.start.apply(plugins.gulp, ['default']);
|
1
dist/index.d.ts
vendored
1
dist/index.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export {};
|
|
14
dist/index.js
vendored
14
dist/index.js
vendored
@ -1,14 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
/* ================================================== *
|
|
||||||
**** NPMTS ****
|
|
||||||
Fabulous TypeScript development
|
|
||||||
* ================================================== */
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const early = require("early");
|
|
||||||
early.start('NPMTS');
|
|
||||||
const plugins = require("./npmts.plugins");
|
|
||||||
const cli = require("./npmts.cli");
|
|
||||||
early.stop().then(() => {
|
|
||||||
let loaded = plugins; // to make sure plugins get actually loaded
|
|
||||||
cli.run();
|
|
||||||
});
|
|
2
dist/mod_compile/index.d.ts
vendored
2
dist/mod_compile/index.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import { INpmtsConfig } from '../npmts.config';
|
|
||||||
export declare let run: (configArg: INpmtsConfig) => Promise<INpmtsConfig>;
|
|
24
dist/mod_compile/index.js
vendored
24
dist/mod_compile/index.js
vendored
@ -1,24 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
/* ------------------------------------------
|
|
||||||
* This module compiles the module's TypeScript files
|
|
||||||
* Note: Test files are only compiled in memory
|
|
||||||
* -------------------------------------------- */
|
|
||||||
const q = require("smartq");
|
|
||||||
const plugins = require("./mod.plugins");
|
|
||||||
const NpmtsAssets = require("./mod.assets");
|
|
||||||
const NpmtsCheck = require("./mod.check");
|
|
||||||
const NpmtsClean = require("./mod.clean");
|
|
||||||
const NpmtsCompile = require("./mod.compile");
|
|
||||||
exports.run = function (configArg) {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.ora.text('starting TypeScript Compilation');
|
|
||||||
NpmtsClean.run(configArg)
|
|
||||||
.then(NpmtsCheck.run)
|
|
||||||
.then(NpmtsCompile.run)
|
|
||||||
.then(NpmtsAssets.run)
|
|
||||||
.then(function () {
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
1
dist/mod_compile/mod.assets.d.ts
vendored
1
dist/mod_compile/mod.assets.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export declare let run: (configArg: any) => Promise<{}>;
|
|
24
dist/mod_compile/mod.assets.js
vendored
24
dist/mod_compile/mod.assets.js
vendored
@ -1,24 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const paths = require("../npmts.paths");
|
|
||||||
const plugins = require("./mod.plugins");
|
|
||||||
const mod_check_1 = require("../mod_compile/mod.check");
|
|
||||||
exports.run = function (configArg) {
|
|
||||||
let done = q.defer();
|
|
||||||
let config = configArg;
|
|
||||||
plugins.beautylog.ora.text('now looking at ' + 'required assets');
|
|
||||||
if (config.cli === true) {
|
|
||||||
let mainJsPath = mod_check_1.projectInfo.packageJson.main;
|
|
||||||
let cliJsString = plugins.smartfile.fs.toStringSync(plugins.path.join(paths.npmtsAssetsDir, 'cli.js'));
|
|
||||||
cliJsString = cliJsString.replace('{{pathToIndex}}', mainJsPath);
|
|
||||||
plugins.smartfile.memory.toFsSync(cliJsString, plugins.path.join(paths.distDir, 'cli.js'));
|
|
||||||
plugins.beautylog.ok('installed CLI assets!');
|
|
||||||
done.resolve(config);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
plugins.beautylog.ok('No additional assets required!');
|
|
||||||
done.resolve(config);
|
|
||||||
}
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
4
dist/mod_compile/mod.check.d.ts
vendored
4
dist/mod_compile/mod.check.d.ts
vendored
@ -1,4 +0,0 @@
|
|||||||
import { ProjectinfoNpm } from 'projectinfo';
|
|
||||||
import { INpmtsConfig } from '../npmts.config';
|
|
||||||
export declare let projectInfo: ProjectinfoNpm;
|
|
||||||
export declare let run: (configArg: INpmtsConfig) => Promise<INpmtsConfig>;
|
|
136
dist/mod_compile/mod.check.js
vendored
136
dist/mod_compile/mod.check.js
vendored
@ -1,136 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
||||||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
||||||
});
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const projectinfo_1 = require("projectinfo");
|
|
||||||
const paths = require("../npmts.paths");
|
|
||||||
const plugins = require("./mod.plugins");
|
|
||||||
let checkProjectTypings = (configArg) => {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.ora.text('Check Module: Check Project Typings...');
|
|
||||||
exports.projectInfo = new projectinfo_1.ProjectinfoNpm(paths.cwd);
|
|
||||||
if (typeof exports.projectInfo.packageJson.typings === 'undefined') {
|
|
||||||
plugins.beautylog.error(`please add typings field to package.json`);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
done.resolve(configArg);
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
const depcheckOptions = {
|
|
||||||
ignoreBinPackage: false,
|
|
||||||
parsers: {
|
|
||||||
// the target parsers
|
|
||||||
'*.ts': plugins.depcheck.parser.typescript
|
|
||||||
},
|
|
||||||
detectors: [
|
|
||||||
// the target detectors
|
|
||||||
plugins.depcheck.detector.requireCallExpression,
|
|
||||||
plugins.depcheck.detector.importDeclaration
|
|
||||||
],
|
|
||||||
specials: [
|
|
||||||
// the target special parsers
|
|
||||||
plugins.depcheck.special.eslint,
|
|
||||||
plugins.depcheck.special.webpack
|
|
||||||
]
|
|
||||||
};
|
|
||||||
let checkDependencies = (configArg) => {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.ora.text('Check Module: Check Dependencies...');
|
|
||||||
let depcheckOptionsMerged = plugins.lodash.merge(depcheckOptions, {
|
|
||||||
ignoreDirs: [
|
|
||||||
// folder with these names will be ignored
|
|
||||||
'test',
|
|
||||||
'dist',
|
|
||||||
'bower_components'
|
|
||||||
],
|
|
||||||
ignoreMatches: [
|
|
||||||
// ignore dependencies that matches these globs
|
|
||||||
'@types/*',
|
|
||||||
'babel-preset-*'
|
|
||||||
]
|
|
||||||
});
|
|
||||||
plugins.depcheck(paths.cwd, depcheckOptionsMerged, unused => {
|
|
||||||
for (let item of unused.dependencies) {
|
|
||||||
plugins.beautylog.warn(`Watch out: unused dependency "${item}"`);
|
|
||||||
}
|
|
||||||
for (let item in unused.missing) {
|
|
||||||
plugins.beautylog.error(`missing dependency "${item}" in package.json`);
|
|
||||||
}
|
|
||||||
if (unused.missing.length > 0) {
|
|
||||||
plugins.beautylog.info('exiting due to missing dependencies in package.json');
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
for (let item in unused.invalidFiles) {
|
|
||||||
plugins.beautylog.warn(`Watch out: could not parse file ${item}`);
|
|
||||||
}
|
|
||||||
for (let item in unused.invalidDirs) {
|
|
||||||
plugins.beautylog.warn(`Watch out: could not parse directory ${item}`);
|
|
||||||
}
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
let checkDevDependencies = (configArg) => {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.ora.text('Check Module: Check devDependencies...');
|
|
||||||
let depcheckOptionsMerged = plugins.lodash.merge(depcheckOptions, {
|
|
||||||
ignoreDirs: [
|
|
||||||
// folder with these names will be ignored
|
|
||||||
'ts',
|
|
||||||
'dist',
|
|
||||||
'bower_components'
|
|
||||||
],
|
|
||||||
ignoreMatches: [
|
|
||||||
// ignore dependencies that matches these globs
|
|
||||||
'@types/*',
|
|
||||||
'babel-preset-*'
|
|
||||||
]
|
|
||||||
});
|
|
||||||
plugins.depcheck(paths.cwd, depcheckOptionsMerged, unused => {
|
|
||||||
for (let item of unused.devDependencies) {
|
|
||||||
plugins.beautylog.log(`unused devDependency ${item}`);
|
|
||||||
}
|
|
||||||
for (let item in unused.missing) {
|
|
||||||
plugins.beautylog.error(`missing devDependency ${item}`);
|
|
||||||
}
|
|
||||||
if (unused.missing.length > 0) {
|
|
||||||
plugins.beautylog.info('exiting due to missing dependencies in package.json');
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
for (let item in unused.invalidFiles) {
|
|
||||||
plugins.beautylog.warn(`Watch out: could not parse file ${item}`);
|
|
||||||
}
|
|
||||||
for (let item in unused.invalidDirs) {
|
|
||||||
plugins.beautylog.warn(`Watch out: could not parse directory ${item}`);
|
|
||||||
}
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
let checkNodeVersion = (configArg) => {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.ora.text('checking node version');
|
|
||||||
done.resolve(configArg);
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
exports.run = (configArg) => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
plugins.beautylog.ora.text('Check Module: ...');
|
|
||||||
if (configArg.checkDependencies) {
|
|
||||||
configArg = yield checkProjectTypings(configArg);
|
|
||||||
configArg = yield checkDependencies(configArg);
|
|
||||||
configArg = yield checkDevDependencies(configArg);
|
|
||||||
configArg = yield checkNodeVersion(configArg);
|
|
||||||
return configArg;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
configArg = yield checkProjectTypings(configArg);
|
|
||||||
return configArg;
|
|
||||||
}
|
|
||||||
});
|
|
1
dist/mod_compile/mod.clean.d.ts
vendored
1
dist/mod_compile/mod.clean.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export declare let run: (configArg: any) => Promise<{}>;
|
|
30
dist/mod_compile/mod.clean.js
vendored
30
dist/mod_compile/mod.clean.js
vendored
@ -1,30 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const paths = require("../npmts.paths");
|
|
||||||
const plugins = require("./mod.plugins");
|
|
||||||
/**
|
|
||||||
* removes the dist directory which will be entirely rebuild
|
|
||||||
*/
|
|
||||||
let removeDist = function () {
|
|
||||||
plugins.beautylog.ora.text('cleaning dist folder');
|
|
||||||
return plugins.smartfile.fs.remove(paths.distDir);
|
|
||||||
};
|
|
||||||
/**
|
|
||||||
* remove old pages
|
|
||||||
*/
|
|
||||||
let removePages = function () {
|
|
||||||
plugins.beautylog.ora.text('cleaning pages folder');
|
|
||||||
return plugins.smartfile.fs.remove(paths.pagesDir);
|
|
||||||
};
|
|
||||||
exports.run = function (configArg) {
|
|
||||||
plugins.beautylog.ora.text('cleaning up from previous builds...');
|
|
||||||
let done = q.defer();
|
|
||||||
removeDist()
|
|
||||||
.then(removePages)
|
|
||||||
.then(function () {
|
|
||||||
plugins.beautylog.ok('Cleaned up from previous builds!');
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
1
dist/mod_compile/mod.compile.d.ts
vendored
1
dist/mod_compile/mod.compile.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export declare let run: (configArg: any) => Promise<{}>;
|
|
20
dist/mod_compile/mod.compile.js
vendored
20
dist/mod_compile/mod.compile.js
vendored
@ -1,20 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const paths = require("../npmts.paths");
|
|
||||||
const plugins = require("./mod.plugins");
|
|
||||||
exports.run = function (configArg) {
|
|
||||||
let done = q.defer();
|
|
||||||
let config = configArg;
|
|
||||||
plugins.beautylog.ora.text('now compiling ' + 'TypeScript');
|
|
||||||
plugins.tsn
|
|
||||||
.compileGlobStringObject(config.ts, config.tsOptions, paths.cwd)
|
|
||||||
.then(() => {
|
|
||||||
plugins.beautylog.ok(`compiled the module's TypeScript!`);
|
|
||||||
done.resolve(config);
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
console.log(err);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
5
dist/mod_compile/mod.plugins.d.ts
vendored
5
dist/mod_compile/mod.plugins.d.ts
vendored
@ -1,5 +0,0 @@
|
|||||||
export * from '../npmts.plugins';
|
|
||||||
import * as tsn from 'tsn';
|
|
||||||
import * as smartchok from 'smartchok';
|
|
||||||
import * as smartstream from 'smartstream';
|
|
||||||
export { tsn, smartchok, smartstream };
|
|
12
dist/mod_compile/mod.plugins.js
vendored
12
dist/mod_compile/mod.plugins.js
vendored
@ -1,12 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
function __export(m) {
|
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
||||||
}
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
__export(require("../npmts.plugins"));
|
|
||||||
const tsn = require("tsn");
|
|
||||||
exports.tsn = tsn;
|
|
||||||
const smartchok = require("smartchok");
|
|
||||||
exports.smartchok = smartchok;
|
|
||||||
const smartstream = require("smartstream");
|
|
||||||
exports.smartstream = smartstream;
|
|
2
dist/mod_docs/index.d.ts
vendored
2
dist/mod_docs/index.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import { INpmtsConfig } from '../npmts.config';
|
|
||||||
export declare let run: (configArg: INpmtsConfig) => Promise<INpmtsConfig>;
|
|
11
dist/mod_docs/index.js
vendored
11
dist/mod_docs/index.js
vendored
@ -1,11 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
/* ------------------------------------------
|
|
||||||
* This module creates TypeScript documentation
|
|
||||||
* -------------------------------------------- */
|
|
||||||
const q = require("smartq");
|
|
||||||
exports.run = function (configArg) {
|
|
||||||
let done = q.defer();
|
|
||||||
done.resolve(configArg);
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
1
dist/mod_docs/mod.plugins.d.ts
vendored
1
dist/mod_docs/mod.plugins.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export * from '../npmts.plugins';
|
|
6
dist/mod_docs/mod.plugins.js
vendored
6
dist/mod_docs/mod.plugins.js
vendored
@ -1,6 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
function __export(m) {
|
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
||||||
}
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
__export(require("../npmts.plugins"));
|
|
6
dist/mod_test/index.d.ts
vendored
6
dist/mod_test/index.d.ts
vendored
@ -1,6 +0,0 @@
|
|||||||
import { INpmtsConfig } from '../npmts.config';
|
|
||||||
/**
|
|
||||||
* run this module
|
|
||||||
* @param configArg some config for how to run this module
|
|
||||||
*/
|
|
||||||
export declare let run: (configArg: INpmtsConfig) => Promise<INpmtsConfig>;
|
|
132
dist/mod_test/index.js
vendored
132
dist/mod_test/index.js
vendored
@ -1,132 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
||||||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
||||||
});
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
/* ------------------------------------------
|
|
||||||
* This module tests the compiled TypeScript files
|
|
||||||
* -------------------------------------------- */
|
|
||||||
const plugins = require("./mod.plugins");
|
|
||||||
const paths = require("../npmts.paths");
|
|
||||||
const q = require("smartq");
|
|
||||||
let testTypeScriptConfig = {
|
|
||||||
target: 'ES5',
|
|
||||||
emitDecoratorMetadata: true,
|
|
||||||
experimentalDecorators: true,
|
|
||||||
lib: ['DOM', 'ESNext']
|
|
||||||
};
|
|
||||||
/**
|
|
||||||
* runs mocha
|
|
||||||
* @returns INpmtsConfig
|
|
||||||
*/
|
|
||||||
let tap = function (configArg) {
|
|
||||||
let done = q.defer();
|
|
||||||
/**
|
|
||||||
* the TabBuffer for npmts
|
|
||||||
*/
|
|
||||||
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer();
|
|
||||||
npmtsTapBuffer.setConfig(configArg.testConfig);
|
|
||||||
/**
|
|
||||||
* handle the testable files
|
|
||||||
*/
|
|
||||||
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
|
||||||
plugins.smartgulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
|
||||||
plugins.gulpSourcemaps.init(),
|
|
||||||
plugins.gulpTypeScript(testTypeScriptConfig),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
|
||||||
npmtsTapBuffer.pipeTestableFiles(),
|
|
||||||
plugins.smartstream.cleanPipe()
|
|
||||||
]);
|
|
||||||
/**
|
|
||||||
* handle the test files
|
|
||||||
*/
|
|
||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
|
||||||
plugins.smartgulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
|
||||||
plugins.gulpSourcemaps.init(),
|
|
||||||
plugins.gulpTypeScript(testTypeScriptConfig),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
|
||||||
npmtsTapBuffer.pipeTestFiles(),
|
|
||||||
plugins.smartstream.cleanPipe()
|
|
||||||
]);
|
|
||||||
// lets run the smartstream
|
|
||||||
Promise.all([testableFilesSmartstream.run(), testFilesSmartstream.run()]).then(() => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
configArg.runData.coverageLcovInfo = yield npmtsTapBuffer.runTests();
|
|
||||||
done.resolve(configArg);
|
|
||||||
}), err => {
|
|
||||||
plugins.beautylog.error('Tests failed!');
|
|
||||||
console.log(err);
|
|
||||||
if (configArg.watch) {
|
|
||||||
done.resolve(configArg);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
let handleCoverageData = (configArg) => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
let coverageResult = 0; // the coverage in percent
|
|
||||||
if (configArg.runData.coverageLcovInfo) {
|
|
||||||
coverageResult = yield plugins.smartcov.get.percentageFromLcovString(configArg.runData.coverageLcovInfo, 2);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
plugins.beautylog.warn('Hey... Did your tests import and use your module that you are trying to test?');
|
|
||||||
}
|
|
||||||
if (coverageResult >= configArg.coverageTreshold) {
|
|
||||||
plugins.beautylog.ok(`${coverageResult.toString()}% ` +
|
|
||||||
`coverage exceeds your treshold of ` +
|
|
||||||
`${configArg.coverageTreshold.toString()}%`);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
plugins.beautylog.warn(`${coverageResult.toString()}% ` +
|
|
||||||
`coverage fails your treshold of ` +
|
|
||||||
`${configArg.coverageTreshold.toString()}%`);
|
|
||||||
plugins.beautylog.error('exiting due to coverage failure');
|
|
||||||
if (!configArg.watch) {
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return configArg;
|
|
||||||
});
|
|
||||||
/**
|
|
||||||
* run this module
|
|
||||||
* @param configArg some config for how to run this module
|
|
||||||
*/
|
|
||||||
exports.run = function (configArg) {
|
|
||||||
let done = q.defer();
|
|
||||||
let config = configArg;
|
|
||||||
if (config.test === true) {
|
|
||||||
plugins.beautylog.ora.text('now starting tests');
|
|
||||||
plugins.beautylog.ora.end();
|
|
||||||
plugins.beautylog.log('ready for tapbuffer:');
|
|
||||||
if (configArg.testConfig.coverage) {
|
|
||||||
tap(config)
|
|
||||||
.then(handleCoverageData)
|
|
||||||
.then(() => {
|
|
||||||
done.resolve(config);
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
console.log(err);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
tap(config)
|
|
||||||
.then(() => {
|
|
||||||
done.resolve(config);
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
console.log(err);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
plugins.beautylog.ora.end();
|
|
||||||
done.resolve(config);
|
|
||||||
}
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
8
dist/mod_test/mod.plugins.d.ts
vendored
8
dist/mod_test/mod.plugins.d.ts
vendored
@ -1,8 +0,0 @@
|
|||||||
export * from '../npmts.plugins';
|
|
||||||
import * as gulpFunction from 'gulp-function';
|
|
||||||
import * as gulpSourcemaps from 'gulp-sourcemaps';
|
|
||||||
import * as gulpTypeScript from 'gulp-typescript';
|
|
||||||
import * as smartcov from 'smartcov';
|
|
||||||
import * as smartgulp from 'smartgulp';
|
|
||||||
import * as tapbuffer from 'tapbuffer';
|
|
||||||
export { gulpFunction, gulpSourcemaps, gulpTypeScript, smartcov, smartgulp, tapbuffer };
|
|
18
dist/mod_test/mod.plugins.js
vendored
18
dist/mod_test/mod.plugins.js
vendored
@ -1,18 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
function __export(m) {
|
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
||||||
}
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
__export(require("../npmts.plugins"));
|
|
||||||
const gulpFunction = require("gulp-function");
|
|
||||||
exports.gulpFunction = gulpFunction;
|
|
||||||
const gulpSourcemaps = require("gulp-sourcemaps");
|
|
||||||
exports.gulpSourcemaps = gulpSourcemaps;
|
|
||||||
const gulpTypeScript = require("gulp-typescript");
|
|
||||||
exports.gulpTypeScript = gulpTypeScript;
|
|
||||||
const smartcov = require("smartcov");
|
|
||||||
exports.smartcov = smartcov;
|
|
||||||
const smartgulp = require("smartgulp");
|
|
||||||
exports.smartgulp = smartgulp;
|
|
||||||
const tapbuffer = require("tapbuffer");
|
|
||||||
exports.tapbuffer = tapbuffer;
|
|
1
dist/npmts.cli.d.ts
vendored
1
dist/npmts.cli.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
export declare let run: () => Promise<{}>;
|
|
109
dist/npmts.cli.js
vendored
109
dist/npmts.cli.js
vendored
@ -1,109 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
||||||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
||||||
});
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const plugins = require("./npmts.plugins");
|
|
||||||
const paths = require("./npmts.paths");
|
|
||||||
const NpmtsConfig = require("./npmts.config");
|
|
||||||
const NpmtsMods = require("./npmts.mods");
|
|
||||||
const NpmtsWatch = require("./npmts.watch");
|
|
||||||
const NpmtsShip = require("./npmts.ship");
|
|
||||||
/**
|
|
||||||
* smartanalytics
|
|
||||||
* this data is fully anonymized (no Ips or any other personal information is tracked).
|
|
||||||
* It just keeps track which of our tools are really used...
|
|
||||||
* ... so we know where to spend our limited resources for improving them.
|
|
||||||
* Since yarn is out and there is heavy caching going on,
|
|
||||||
* pure download stats are just not reliable enough for us anymore
|
|
||||||
* Feel free to dig into the smartanalytics package, if you are interested in how it works.
|
|
||||||
* It is just an https call to our own Lossless Analytics API.
|
|
||||||
* Our privacy policy can be found here: https://lossless.gmbh/privacy.html
|
|
||||||
*/
|
|
||||||
let npmtsAnalytics = new plugins.smartanalytics.Analytics({
|
|
||||||
apiEndPoint: 'https://pubapi.lossless.one/analytics',
|
|
||||||
projectId: 'gitzone',
|
|
||||||
appName: 'npmts'
|
|
||||||
});
|
|
||||||
process.nextTick(() => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
// make the analytics call
|
|
||||||
npmtsAnalytics
|
|
||||||
.recordEvent('npmToolExecution', {
|
|
||||||
executionMode: (yield NpmtsConfig.configPromise).mode,
|
|
||||||
tsOptions: (yield NpmtsConfig.configPromise).tsOptions,
|
|
||||||
watch: (yield NpmtsConfig.configPromise).watch,
|
|
||||||
coverageTreshold: (yield NpmtsConfig.configPromise).coverageTreshold
|
|
||||||
})
|
|
||||||
.catch(err => {
|
|
||||||
plugins.beautylog.warn('Lossless Analytics API not available...');
|
|
||||||
});
|
|
||||||
}));
|
|
||||||
exports.run = () => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.figletSync('NPMTS');
|
|
||||||
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
|
||||||
// check for updates
|
|
||||||
yield plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version, 'http://gitzone.gitlab.io/npmts/changelog.html');
|
|
||||||
plugins.beautylog.log('---------------------------------------------');
|
|
||||||
let npmtsCli = new plugins.smartcli.Smartcli();
|
|
||||||
// build
|
|
||||||
npmtsCli
|
|
||||||
.addCommand('build')
|
|
||||||
.subscribe((argvArg) => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version);
|
|
||||||
const configArg = yield NpmtsConfig.run(argvArg);
|
|
||||||
plugins.beautylog.ora.start('loading additional modules...');
|
|
||||||
NpmtsMods.modCompile
|
|
||||||
.load()
|
|
||||||
.then(modCompile => {
|
|
||||||
return modCompile.run(configArg);
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
let done = q.defer();
|
|
||||||
NpmtsMods.modDocs
|
|
||||||
.load()
|
|
||||||
.then(modDocs => {
|
|
||||||
return modDocs.run(configArg);
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
let done = q.defer();
|
|
||||||
NpmtsMods.modTest
|
|
||||||
.load()
|
|
||||||
.then(modTest => {
|
|
||||||
return modTest.run(configArg);
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
})
|
|
||||||
.then(NpmtsWatch.run)
|
|
||||||
.then(NpmtsShip.run);
|
|
||||||
return done.promise;
|
|
||||||
}), err => {
|
|
||||||
if (err instanceof Error) {
|
|
||||||
console.log(err);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// standard task
|
|
||||||
npmtsCli.standardTask().subscribe((argvArg) => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
yield npmtsCli.trigger('build');
|
|
||||||
}));
|
|
||||||
// cli metadata
|
|
||||||
npmtsCli.addVersion(npmtsProjectInfo.version);
|
|
||||||
// start parsing
|
|
||||||
npmtsCli.startParse();
|
|
||||||
return yield done.promise;
|
|
||||||
});
|
|
26
dist/npmts.config.d.ts
vendored
26
dist/npmts.config.d.ts
vendored
@ -1,26 +0,0 @@
|
|||||||
import { ITapbufferConfig } from 'tapbuffer';
|
|
||||||
/**
|
|
||||||
* specifies the different modes available
|
|
||||||
* default -> uses default options no matterm what
|
|
||||||
* merge -> uses merged default + custom options
|
|
||||||
* custom -> only uses specified options
|
|
||||||
*/
|
|
||||||
export declare type npmtsMode = 'default' | 'custom' | 'merge';
|
|
||||||
export interface INpmtsConfig {
|
|
||||||
argv: any;
|
|
||||||
coverageTreshold: number;
|
|
||||||
checkDependencies: boolean;
|
|
||||||
mode: npmtsMode;
|
|
||||||
test: boolean;
|
|
||||||
testTs: any;
|
|
||||||
testConfig: ITapbufferConfig;
|
|
||||||
ts: any;
|
|
||||||
tsOptions: any;
|
|
||||||
watch: boolean;
|
|
||||||
runData: {
|
|
||||||
coverageLcovInfo?: string;
|
|
||||||
coverageResult?: number;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
export declare let run: (argvArg: any) => Promise<INpmtsConfig>;
|
|
||||||
export declare let configPromise: Promise<INpmtsConfig>;
|
|
71
dist/npmts.config.js
vendored
71
dist/npmts.config.js
vendored
@ -1,71 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = require("./npmts.plugins");
|
|
||||||
const paths = require("./npmts.paths");
|
|
||||||
const smartq = require("smartq");
|
|
||||||
exports.run = function (argvArg) {
|
|
||||||
let done = smartq.defer();
|
|
||||||
let defaultConfig = {
|
|
||||||
argv: undefined,
|
|
||||||
coverageTreshold: 70,
|
|
||||||
checkDependencies: true,
|
|
||||||
mode: 'default',
|
|
||||||
test: true,
|
|
||||||
testTs: {},
|
|
||||||
testConfig: {
|
|
||||||
parallel: true,
|
|
||||||
coverage: true
|
|
||||||
},
|
|
||||||
ts: {},
|
|
||||||
tsOptions: {},
|
|
||||||
watch: false,
|
|
||||||
runData: {}
|
|
||||||
};
|
|
||||||
// mix with configfile
|
|
||||||
plugins.beautylog.ora.text('running npmextra');
|
|
||||||
let localNpmextra = new plugins.npmextra.Npmextra(paths.cwd);
|
|
||||||
let config = localNpmextra.dataFor('npmts', defaultConfig);
|
|
||||||
// add argv
|
|
||||||
config.argv = argvArg;
|
|
||||||
// check mode
|
|
||||||
switch (config.mode) {
|
|
||||||
case 'default':
|
|
||||||
case 'custom':
|
|
||||||
case 'merge':
|
|
||||||
plugins.beautylog.ok('mode is ' + config.mode);
|
|
||||||
done.resolve(config);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
plugins.beautylog.error(`mode not recognised! Can be default or custom`);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
// handle default mode
|
|
||||||
if (config.mode === 'default' || config.mode === 'merge') {
|
|
||||||
config.ts = {
|
|
||||||
'./ts/**/*.ts': './dist/'
|
|
||||||
};
|
|
||||||
config.testTs = {
|
|
||||||
'./test/**/*.ts': './test/'
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// mix with commandline
|
|
||||||
if (config.argv.notest) {
|
|
||||||
config.test = false;
|
|
||||||
}
|
|
||||||
if (config.argv.nocoverage) {
|
|
||||||
config.testConfig.coverage = false;
|
|
||||||
}
|
|
||||||
if (config.argv.nochecks) {
|
|
||||||
config.checkDependencies = false;
|
|
||||||
}
|
|
||||||
if (config.argv.watch) {
|
|
||||||
config.watch = true;
|
|
||||||
}
|
|
||||||
plugins.beautylog.ok('build options are ready!');
|
|
||||||
done.resolve(config);
|
|
||||||
configDeferred.resolve(config);
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
// config deferred usage
|
|
||||||
let configDeferred = smartq.defer();
|
|
||||||
exports.configPromise = configDeferred.promise;
|
|
7
dist/npmts.mods.d.ts
vendored
7
dist/npmts.mods.d.ts
vendored
@ -1,7 +0,0 @@
|
|||||||
import * as plugins from './npmts.plugins';
|
|
||||||
import * as _modCompile from './mod_compile/index';
|
|
||||||
import * as _modDocs from './mod_docs/index';
|
|
||||||
import * as _modTest from './mod_test/index';
|
|
||||||
export declare let modCompile: plugins.smartsystem.LazyModule<typeof _modCompile>;
|
|
||||||
export declare let modDocs: plugins.smartsystem.LazyModule<typeof _modDocs>;
|
|
||||||
export declare let modTest: plugins.smartsystem.LazyModule<typeof _modTest>;
|
|
6
dist/npmts.mods.js
vendored
6
dist/npmts.mods.js
vendored
@ -1,6 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const smartsystem_1 = require("smartsystem");
|
|
||||||
exports.modCompile = new smartsystem_1.LazyModule('./mod_compile/index', __dirname);
|
|
||||||
exports.modDocs = new smartsystem_1.LazyModule('./mod_docs/index', __dirname);
|
|
||||||
exports.modTest = new smartsystem_1.LazyModule('./mod_test/index', __dirname);
|
|
12
dist/npmts.paths.d.ts
vendored
12
dist/npmts.paths.d.ts
vendored
@ -1,12 +0,0 @@
|
|||||||
export declare let npmtsPackageRoot: string;
|
|
||||||
export declare let cwd: string;
|
|
||||||
export declare let tsDir: string;
|
|
||||||
export declare let distDir: string;
|
|
||||||
export declare let testDir: string;
|
|
||||||
export declare let typingsDir: string;
|
|
||||||
export declare let coverageDir: string;
|
|
||||||
export declare let pagesDir: string;
|
|
||||||
export declare let pagesApiDir: string;
|
|
||||||
export declare let npmtsAssetsDir: string;
|
|
||||||
export declare let indexTS: string;
|
|
||||||
export declare let testTS: string;
|
|
20
dist/npmts.paths.js
vendored
20
dist/npmts.paths.js
vendored
@ -1,20 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = require("./npmts.plugins");
|
|
||||||
// NPMTS Paths
|
|
||||||
exports.npmtsPackageRoot = plugins.path.join(__dirname, '../');
|
|
||||||
// Project paths
|
|
||||||
exports.cwd = process.cwd();
|
|
||||||
// Directories
|
|
||||||
exports.tsDir = plugins.path.join(exports.cwd, 'ts/');
|
|
||||||
exports.distDir = plugins.path.join(exports.cwd, 'dist/');
|
|
||||||
exports.testDir = plugins.path.join(exports.cwd, 'test/');
|
|
||||||
exports.typingsDir = plugins.path.join(exports.cwd, 'ts/typings/');
|
|
||||||
exports.coverageDir = plugins.path.join(exports.cwd, 'coverage/');
|
|
||||||
// Pages
|
|
||||||
exports.pagesDir = plugins.path.join(exports.cwd, 'pages/');
|
|
||||||
exports.pagesApiDir = plugins.path.join(exports.pagesDir, '/api');
|
|
||||||
exports.npmtsAssetsDir = plugins.path.join(__dirname, '../assets/');
|
|
||||||
// Files
|
|
||||||
exports.indexTS = plugins.path.join(exports.cwd, 'ts/index.ts');
|
|
||||||
exports.testTS = plugins.path.join(exports.cwd, 'ts/test.ts');
|
|
17
dist/npmts.plugins.d.ts
vendored
17
dist/npmts.plugins.d.ts
vendored
@ -1,17 +0,0 @@
|
|||||||
import * as beautylog from 'beautylog';
|
|
||||||
declare let depcheck: any;
|
|
||||||
import * as lodash from 'lodash';
|
|
||||||
import * as npmextra from 'npmextra';
|
|
||||||
import * as projectinfo from 'projectinfo';
|
|
||||||
import * as path from 'path';
|
|
||||||
import * as smartanalytics from 'smartanalytics';
|
|
||||||
import * as smartcli from '@pushrocks/smartcli';
|
|
||||||
import * as smarterror from 'smarterror';
|
|
||||||
import * as smartfile from 'smartfile';
|
|
||||||
import * as smartpath from 'smartpath';
|
|
||||||
import * as smartstream from 'smartstream';
|
|
||||||
import * as smartstring from 'smartstring';
|
|
||||||
import * as smartsystem from 'smartsystem';
|
|
||||||
import * as smartupdate from 'smartupdate';
|
|
||||||
import * as through2 from 'through2';
|
|
||||||
export { beautylog, depcheck, lodash, npmextra, projectinfo, path, smartanalytics, smartcli, smarterror, smartfile, smartpath, smartstream, smartstring, smartsystem, smartupdate, through2 };
|
|
34
dist/npmts.plugins.js
vendored
34
dist/npmts.plugins.js
vendored
@ -1,34 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const beautylog = require("beautylog");
|
|
||||||
exports.beautylog = beautylog;
|
|
||||||
let depcheck = require('depcheck');
|
|
||||||
exports.depcheck = depcheck;
|
|
||||||
const lodash = require("lodash");
|
|
||||||
exports.lodash = lodash;
|
|
||||||
const npmextra = require("npmextra");
|
|
||||||
exports.npmextra = npmextra;
|
|
||||||
const projectinfo = require("projectinfo");
|
|
||||||
exports.projectinfo = projectinfo;
|
|
||||||
const path = require("path");
|
|
||||||
exports.path = path;
|
|
||||||
const smartanalytics = require("smartanalytics");
|
|
||||||
exports.smartanalytics = smartanalytics;
|
|
||||||
const smartcli = require("@pushrocks/smartcli");
|
|
||||||
exports.smartcli = smartcli;
|
|
||||||
const smarterror = require("smarterror");
|
|
||||||
exports.smarterror = smarterror;
|
|
||||||
const smartfile = require("smartfile");
|
|
||||||
exports.smartfile = smartfile;
|
|
||||||
const smartpath = require("smartpath");
|
|
||||||
exports.smartpath = smartpath;
|
|
||||||
const smartstream = require("smartstream");
|
|
||||||
exports.smartstream = smartstream;
|
|
||||||
const smartstring = require("smartstring");
|
|
||||||
exports.smartstring = smartstring;
|
|
||||||
const smartsystem = require("smartsystem");
|
|
||||||
exports.smartsystem = smartsystem;
|
|
||||||
const smartupdate = require("smartupdate");
|
|
||||||
exports.smartupdate = smartupdate;
|
|
||||||
const through2 = require("through2");
|
|
||||||
exports.through2 = through2;
|
|
2
dist/npmts.ship.d.ts
vendored
2
dist/npmts.ship.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import { INpmtsConfig } from './npmts.config';
|
|
||||||
export declare let run: (configArg: INpmtsConfig) => void;
|
|
29
dist/npmts.ship.js
vendored
29
dist/npmts.ship.js
vendored
@ -1,29 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const plugins = require("./npmts.plugins");
|
|
||||||
exports.run = (configArg) => {
|
|
||||||
let done = q.defer();
|
|
||||||
let shipString = '' +
|
|
||||||
'\n' +
|
|
||||||
'\n' +
|
|
||||||
' # # ( )\n' +
|
|
||||||
' ___#_#___|__\n' +
|
|
||||||
' _ |____________| _\n' +
|
|
||||||
' _=====| | | | | |==== _\n' +
|
|
||||||
' =====| |.---------------------------. | |====\n' +
|
|
||||||
" <--------------------' . . . . . . . . '--------------/\n" +
|
|
||||||
' \\ /\n' +
|
|
||||||
' \\___________________________________________________________/\n' +
|
|
||||||
' wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n' +
|
|
||||||
' wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n' +
|
|
||||||
' wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\n';
|
|
||||||
if (process.env.CI) {
|
|
||||||
console.log(shipString);
|
|
||||||
plugins.beautylog.success('READY TO SHIP!');
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
plugins.beautylog.success('Done!');
|
|
||||||
}
|
|
||||||
done.resolve(configArg);
|
|
||||||
};
|
|
2
dist/npmts.watch.d.ts
vendored
2
dist/npmts.watch.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import { INpmtsConfig } from './npmts.config';
|
|
||||||
export declare let run: (configArg: INpmtsConfig) => Promise<{}>;
|
|
33
dist/npmts.watch.js
vendored
33
dist/npmts.watch.js
vendored
@ -1,33 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const q = require("smartq");
|
|
||||||
const smartchok = require("smartchok");
|
|
||||||
const plugins = require("./npmts.plugins");
|
|
||||||
const cli = require("./npmts.cli");
|
|
||||||
let npmtsSmartchok = null;
|
|
||||||
exports.run = (configArg) => {
|
|
||||||
let done = q.defer();
|
|
||||||
if (configArg.watch && npmtsSmartchok === null) {
|
|
||||||
let pathsToWatch = [];
|
|
||||||
for (let key in configArg.ts) {
|
|
||||||
pathsToWatch.push(key);
|
|
||||||
}
|
|
||||||
for (let key in configArg.testTs) {
|
|
||||||
pathsToWatch.push(key);
|
|
||||||
}
|
|
||||||
npmtsSmartchok = new smartchok.Smartchok(pathsToWatch);
|
|
||||||
npmtsSmartchok.getObservableFor('change').then(changeObservableArg => {
|
|
||||||
plugins.beautylog.info('now watching...');
|
|
||||||
changeObservableArg.subscribe(() => {
|
|
||||||
cli.run();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
npmtsSmartchok.start();
|
|
||||||
done.resolve(configArg);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
plugins.beautylog.info('not watching');
|
|
||||||
done.resolve(configArg);
|
|
||||||
}
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
@ -1,9 +0,0 @@
|
|||||||
[Legal Info](https://lossless.gmbh)
|
|
||||||
[Privacy Policy](https://lossless.gmbh/privacy.html)
|
|
||||||
///
|
|
||||||
[Git.Zone](https://git.zone)
|
|
||||||
<span>tools for a seamless dev workflow</span>
|
|
||||||
|
|
||||||
[Lossless GmbH](https://push.rocks)
|
|
||||||
<span>the company behind git.zone and npmts</span>
|
|
||||||
///
|
|
@ -1,10 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
## 2017-07-30: Version 7.x.x -> 8.x.x
|
|
||||||
|
|
||||||
Testfiles in ./test/ can now import files directly from the ts dir:
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
// ./test/test.ts
|
|
||||||
import * as myModule from '../ts/index
|
|
||||||
```
|
|
@ -1,88 +0,0 @@
|
|||||||
---
|
|
||||||
name: config
|
|
||||||
---
|
|
||||||
|
|
||||||
# Configuration
|
|
||||||
|
|
||||||
npmts can be configured to your needs.
|
|
||||||
|
|
||||||
### npmextra.json
|
|
||||||
|
|
||||||
the npmts section in npmextra.json can be used to configure npmts.
|
|
||||||
|
|
||||||
**Default**
|
|
||||||
|
|
||||||
> Note: When you are using `"mode":"default"` it'll cause npmts to override any other settings you may have made except for tsOptions (ES target etc.)
|
|
||||||
> with default behaviour.
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"npmts": {
|
|
||||||
"mode": "default"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Custom settings**
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"mode": "custom",
|
|
||||||
"test": true,
|
|
||||||
"npmts": {
|
|
||||||
"ts": {
|
|
||||||
"./customdir/*.ts": "./"
|
|
||||||
},
|
|
||||||
"tsOptions": {
|
|
||||||
"declaration": false,
|
|
||||||
"target": "ES6"
|
|
||||||
},
|
|
||||||
"cli": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
| key | default value | description |
|
|
||||||
| -------------- | ----------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
||||||
| `"mode"` | `"default"` | "default" will do default stuff and override , "custom" only does what you specify, "merge" will merge default options with whatever you specify on your own |
|
|
||||||
| `"test"` | `true` | test your module |
|
|
||||||
| `"ts"` | `{"./ts/*.ts":"./","./test/test.ts":"./test/"}` | allows you to define multiple ts portions |
|
|
||||||
| `"tsOptions"` | `{"target":"ES5", "declaration":"true"}` | specify options for tsc |
|
|
||||||
| `"cli"` | `"false"` | some modules are designed to be used from cli. If set to true NPMTS will create a cli.js that wires you dist files up for cli use. |
|
|
||||||
| `"testConfig"` | `{ parallel: true, coverage: true }` | allows you to control test behaviour. `"parallel"` controls wether testfiles are run sequentially or in parallel, and `"coverage` wether to create coverage reports |
|
|
||||||
|
|
||||||
### TypeScript
|
|
||||||
|
|
||||||
by default npmts looks for `./ts/*.ts` and `./test/test.ts` that will compile to
|
|
||||||
`./dist/*.js` and `./test/test.js`
|
|
||||||
|
|
||||||
Use commonjs module system for wiring up files.
|
|
||||||
|
|
||||||
### Declaration files
|
|
||||||
|
|
||||||
**npmts** also creates declaration files like `./dist/index.d.ts` by default.
|
|
||||||
You can reference it in your package.json like this.
|
|
||||||
|
|
||||||
```json
|
|
||||||
"main": "dist/index.js",
|
|
||||||
"typings": ".dist/index.d.ts",
|
|
||||||
```
|
|
||||||
|
|
||||||
This is in line with the latest TypeScript best practices.
|
|
||||||
You can then import plugins via the TypeScript `import` Syntax
|
|
||||||
and tsc will pick up the declaration file automatically.
|
|
||||||
|
|
||||||
## Some notes:
|
|
||||||
|
|
||||||
#### Typings for third party modules that do not bundle declaration files
|
|
||||||
|
|
||||||
NPMTS no longer supports typings.json. Instead use the new TypeScript 2.x approach to typings using the @types/ npm scope.
|
|
||||||
|
|
||||||
#### Instrumentalize Code
|
|
||||||
|
|
||||||
npmts instrumentalizes (using istanbul) the created JavaScript code to create a coverage report.
|
|
||||||
|
|
||||||
#### Tests
|
|
||||||
|
|
||||||
Any errors will be shown with reference to their originating source in TypeScript
|
|
||||||
thanks to autogenerated source maps.
|
|
@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
name: Default Behaviour
|
|
||||||
---
|
|
||||||
|
|
||||||
# Default Behaviour
|
|
||||||
|
|
||||||
when you don't configure it otherwise.
|
|
||||||
|
|
||||||
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. **Check:** Check project for typings declaration in package.json, unused dependencies and missing dependencies
|
|
||||||
1. **Transpile:** Transpile TypeScript with **inline sourcemaps** and **declaration files** to ES target
|
|
||||||
1. **Test:** transpile TypeScript of module to ES5 for tests (so it can be instrumentalized) and pipe it to tapbuffer. All this happens in memory.
|
|
@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
name: Examples
|
|
||||||
---
|
|
||||||
|
|
||||||
# Examples
|
|
||||||
|
|
||||||
modules that use npmts in theis development workflow
|
|
||||||
|
|
||||||
| 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 |
|
|
||||||
| [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.
|
|
||||||
|
|
||||||
### Tips and tricks:
|
|
||||||
|
|
||||||
- Use [npmts-g](https://www.npmjs.com/package/npmts-g) to use globally installed npmts and install npmts locally if no global npmts is available.
|
|
||||||
- Use [npmpage](https://www.npmjs.com/package/npmpage) to create a webpage from coverage reports and TypeDoc for the module
|
|
||||||
- Use [hosttoday/ht-docker-node:npmci](https://hub.docker.com/r/hosttoday/ht-docker-node/) for speedy CI builds
|
|
||||||
- Use [npmdocker](https://www.npmjs.com/package/npmdocker) for running tests consistently with docker.
|
|
@ -1,40 +0,0 @@
|
|||||||
---
|
|
||||||
name: Get Started
|
|
||||||
description: learn how to quickly write npm TypeScript modules
|
|
||||||
---
|
|
||||||
|
|
||||||
# Get Started with NPMTS
|
|
||||||
|
|
||||||
and learn how to quickly write npm TypeScript modules
|
|
||||||
|
|
||||||
## Step1: Install the tools
|
|
||||||
|
|
||||||
To use npmts install it using npm or yarn:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install -g npmts # install with npm
|
|
||||||
yarn global add npmts # install with yarn
|
|
||||||
```
|
|
||||||
|
|
||||||
For the purpose of getting started quickly please also install **gitzone**.
|
|
||||||
It'll proovide awesome scaffolding for new npmts maintained modules and also updates them later on.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install -g gitzone # install with npm
|
|
||||||
yarn global add gitzone # install with yarn
|
|
||||||
```
|
|
||||||
|
|
||||||
You can make sure npmts and gitzone are installed correctly by typing `npmts -v && gitzone -v`.
|
|
||||||
|
|
||||||
## Scaffold a new module
|
|
||||||
|
|
||||||
To scaffold a new module type
|
|
||||||
|
|
||||||
```shell
|
|
||||||
gitzone template npm
|
|
||||||
```
|
|
||||||
|
|
||||||
This will run you through a series of question to get gitzone to know the specifics of your module.
|
|
||||||
Enter all information accordingly.
|
|
||||||
|
|
||||||
## Run NPMTS for the first time
|
|
@ -1,52 +0,0 @@
|
|||||||
---
|
|
||||||
name: Index
|
|
||||||
description: best practice npm TypeScript modules
|
|
||||||
---
|
|
||||||
|
|
||||||
# npmts
|
|
||||||
|
|
||||||
best practice npm TypeScript modules
|
|
||||||
|
|
||||||
## Availabililty
|
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/npmts)
|
|
||||||
[](https://GitLab.com/gitzone/npmts)
|
|
||||||
[](https://github.com/gitzone/npmts)
|
|
||||||
[](https://gitzone.gitlab.io/npmts/)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
|
|
||||||
[](https://GitLab.com/gitzone/npmts/commits/master)
|
|
||||||
[](https://GitLab.com/gitzone/npmts/commits/master)
|
|
||||||
[](https://www.npmjs.com/package/npmts)
|
|
||||||
[](https://david-dm.org/gitzonetools/npmts)
|
|
||||||
[](https://www.bithound.io/github/gitzonetools/npmts/master/dependencies/npm)
|
|
||||||
[](https://www.bithound.io/github/gitzonetools/npmts)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
|
||||||
|
|
||||||
## Quick Demo
|
|
||||||
|
|
||||||
[](https://asciinema.org/a/9c3assmh21i49qhe5lmi48sze?speed=2&t=0)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
NPMTS is your friend when writing, testing, publishing and documenting npm modules written in TypeScript.
|
|
||||||
|
|
||||||
npmts will
|
|
||||||
|
|
||||||
1. check your dependencies and package.json (unused, missing, updates, security)
|
|
||||||
1. transpile your code with tsc,
|
|
||||||
1. test your code with tap (supports the fancy stuff like Promises, Generators, async/await, sourcemaps, parallel test execution in child processes)
|
|
||||||
1. create coverage with istanbul (supports tracing of the originating TypeScript)
|
|
||||||
|
|
||||||
For more information on how tests are run check out the [tapbuffer module](https://www.npmjs.com/package/tapbuffer).
|
|
||||||
|
|
||||||
This works on your machine and in CI. There is a prebuild docker image available that includes npmts to make CI a breeze:
|
|
||||||
[hosttoday/ht-docker-node:npmts on Dockerhub](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
|
||||||
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
|
||||||
|
|
||||||
[](https:/git.zone)
|
|
@ -1,19 +0,0 @@
|
|||||||
# Install npmts
|
|
||||||
|
|
||||||
Get started with TypeScript awesomeness.
|
|
||||||
|
|
||||||
> \*_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.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install npmts -g # installs npmts globally
|
|
||||||
npm install npmts-g --save-dev # installs npmts-g checking tool as devDependency
|
|
||||||
```
|
|
||||||
|
|
||||||
Then add it to your package.json's script section to trigger a build:
|
|
||||||
|
|
||||||
```json
|
|
||||||
"scripts": {
|
|
||||||
"test": "(npmts)"
|
|
||||||
}
|
|
||||||
```
|
|
@ -1,27 +0,0 @@
|
|||||||
---
|
|
||||||
name: npmts project structure
|
|
||||||
description: how npmts projects are structured
|
|
||||||
---
|
|
||||||
|
|
||||||
# npmts - Project Structure
|
|
||||||
|
|
||||||
**locally**
|
|
||||||
|
|
||||||
```text
|
|
||||||
projectroot
|
|
||||||
|- .nogit/ # contains files that should not be checked into git - NOgit
|
|
||||||
|- dist/ # contains compiled js files and their corresponding typings - git
|
|
||||||
|- node_modules/ # contains the installed node modules - NOgit
|
|
||||||
|- test/ # contains the test files - git
|
|
||||||
|- ts/ # contains the source TypeScript files - git
|
|
||||||
|
|
|
||||||
|- .gitignore # the normal gitignore file
|
|
||||||
|- .gitlab-ci.yml # the gitlab ci yml file
|
|
||||||
|- npmextra.json # npmextra.json
|
|
||||||
|- package.json # the standard npm module package.json file
|
|
||||||
|- readme.md # the standard project readme
|
|
||||||
|- tslint.json # the standard tslint.json for TypeScript
|
|
||||||
|- yarn.lock # yarn.lock - the standard yarn.lock file
|
|
||||||
```
|
|
||||||
|
|
||||||
**in git**
|
|
59
index.d.ts
vendored
Normal file
59
index.d.ts
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
/// <reference path="../ts/typings/main.d.ts" />
|
||||||
|
declare module NpmtsPlugins {
|
||||||
|
var init: () => {
|
||||||
|
beautylog: any;
|
||||||
|
fs: any;
|
||||||
|
gulp: any;
|
||||||
|
g: {
|
||||||
|
coveralls: any;
|
||||||
|
insert: any;
|
||||||
|
istanbul: any;
|
||||||
|
mocha: any;
|
||||||
|
typescript: any;
|
||||||
|
};
|
||||||
|
mergeStream: any;
|
||||||
|
path: any;
|
||||||
|
q: any;
|
||||||
|
smartcli: any;
|
||||||
|
smartfile: any;
|
||||||
|
typings: any;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
declare module NpmtsPaths {
|
||||||
|
var init: () => any;
|
||||||
|
}
|
||||||
|
declare module NpmtsConfigFile {
|
||||||
|
var run: () => any;
|
||||||
|
}
|
||||||
|
declare module NpmtsOptions {
|
||||||
|
var run: (configArg: any) => any;
|
||||||
|
}
|
||||||
|
declare module NpmtsCompile {
|
||||||
|
var run: (configArg: any) => any;
|
||||||
|
}
|
||||||
|
declare module NpmtsTests {
|
||||||
|
var run: (configArg: any) => any;
|
||||||
|
}
|
||||||
|
declare module NpmtsPromisechain {
|
||||||
|
var init: () => any;
|
||||||
|
}
|
||||||
|
declare var plugins: {
|
||||||
|
beautylog: any;
|
||||||
|
fs: any;
|
||||||
|
gulp: any;
|
||||||
|
g: {
|
||||||
|
coveralls: any;
|
||||||
|
insert: any;
|
||||||
|
istanbul: any;
|
||||||
|
mocha: any;
|
||||||
|
typescript: any;
|
||||||
|
};
|
||||||
|
mergeStream: any;
|
||||||
|
path: any;
|
||||||
|
q: any;
|
||||||
|
smartcli: any;
|
||||||
|
smartfile: any;
|
||||||
|
typings: any;
|
||||||
|
};
|
||||||
|
declare var paths: any;
|
||||||
|
declare var promisechain: any;
|
256
index.js
Normal file
256
index.js
Normal file
@ -0,0 +1,256 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsPlugins;
|
||||||
|
(function (NpmtsPlugins) {
|
||||||
|
NpmtsPlugins.init = function () {
|
||||||
|
var plugins = {
|
||||||
|
beautylog: require("beautylog"),
|
||||||
|
fs: require("fs-extra"),
|
||||||
|
gulp: require("gulp"),
|
||||||
|
g: {
|
||||||
|
coveralls: require("gulp-coveralls"),
|
||||||
|
insert: require("gulp-insert"),
|
||||||
|
istanbul: require("gulp-istanbul"),
|
||||||
|
mocha: require("gulp-mocha"),
|
||||||
|
typescript: require("gulp-typescript")
|
||||||
|
},
|
||||||
|
mergeStream: require("merge2"),
|
||||||
|
path: require("path"),
|
||||||
|
q: require("q"),
|
||||||
|
smartcli: require("smartcli"),
|
||||||
|
smartfile: require("smartfile"),
|
||||||
|
typings: require("typings")
|
||||||
|
};
|
||||||
|
return plugins;
|
||||||
|
};
|
||||||
|
})(NpmtsPlugins || (NpmtsPlugins = {}));
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsPaths;
|
||||||
|
(function (NpmtsPaths) {
|
||||||
|
NpmtsPaths.init = function () {
|
||||||
|
var paths = {};
|
||||||
|
paths.cwd = plugins.smartcli.get.cwd().path;
|
||||||
|
paths.tsDir = plugins.path.join(paths.cwd, "ts/");
|
||||||
|
paths.indexTS = plugins.path.join(paths.cwd, "ts/index.ts");
|
||||||
|
paths.testTS = plugins.path.join(paths.cwd, "ts/test.ts");
|
||||||
|
paths.testDir = plugins.path.join(paths.cwd, "test/");
|
||||||
|
return paths;
|
||||||
|
};
|
||||||
|
})(NpmtsPaths || (NpmtsPaths = {}));
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsConfigFile;
|
||||||
|
(function (NpmtsConfigFile) {
|
||||||
|
NpmtsConfigFile.run = function () {
|
||||||
|
var done = plugins.q.defer();
|
||||||
|
var config = {};
|
||||||
|
var configPath = plugins.path.join(paths.cwd, "npmts.json");
|
||||||
|
if (plugins.smartfile.checks.fileExistsSync(configPath)) {
|
||||||
|
plugins.beautylog.info("npmts.json".blue + " config file found!");
|
||||||
|
config = plugins.smartfile.readFileToObject(configPath);
|
||||||
|
switch (config.mode) {
|
||||||
|
case "default":
|
||||||
|
case "custom":
|
||||||
|
plugins.beautylog.log("mode is " + config.mode.yellow);
|
||||||
|
done.resolve(config);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
plugins.beautylog.error("mode " + config.mode.yellow + " not recognised!".red);
|
||||||
|
}
|
||||||
|
;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
plugins.beautylog.log("no config file found: so mode is " + "default".yellow);
|
||||||
|
config.mode = "default";
|
||||||
|
done.resolve(config);
|
||||||
|
}
|
||||||
|
;
|
||||||
|
return done.promise;
|
||||||
|
};
|
||||||
|
})(NpmtsConfigFile || (NpmtsConfigFile = {}));
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsOptions;
|
||||||
|
(function (NpmtsOptions) {
|
||||||
|
NpmtsOptions.run = function (configArg) {
|
||||||
|
var done = plugins.q.defer();
|
||||||
|
var config = configArg;
|
||||||
|
if (typeof config.coveralls === "undefined") {
|
||||||
|
config.coveralls = false;
|
||||||
|
}
|
||||||
|
if (config.mode == "default") {
|
||||||
|
config.typings = [
|
||||||
|
"./ts/"
|
||||||
|
];
|
||||||
|
config.ts = (_a = {},
|
||||||
|
_a["./ts/index.ts"] = "./index.js",
|
||||||
|
_a["./ts/test.ts"] = "./test/test.js",
|
||||||
|
_a
|
||||||
|
);
|
||||||
|
config.test = ["./index.js"];
|
||||||
|
done.resolve(config);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
done.resolve(config);
|
||||||
|
}
|
||||||
|
return done.promise;
|
||||||
|
var _a;
|
||||||
|
};
|
||||||
|
})(NpmtsOptions || (NpmtsOptions = {}));
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsCompile;
|
||||||
|
(function (NpmtsCompile) {
|
||||||
|
NpmtsCompile.run = function (configArg) {
|
||||||
|
var done = plugins.q.defer();
|
||||||
|
var config = configArg;
|
||||||
|
plugins.beautylog.log("now running custom tasks");
|
||||||
|
var moduleStream = plugins.mergeStream({ end: false });
|
||||||
|
/* -------------------------------------------------
|
||||||
|
* ----------- first install typings ---------------
|
||||||
|
* ----------------------------------------------- */
|
||||||
|
var typingsDone = plugins.q.defer();
|
||||||
|
var typingsCounter = 0;
|
||||||
|
var typingsCounterAdvance = function () {
|
||||||
|
typingsCounter++;
|
||||||
|
if (typeof config.typings[typingsCounter] != "undefined") {
|
||||||
|
installTypings();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
plugins.beautylog.success("custom typings installed successfully");
|
||||||
|
typingsDone.resolve();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var installTypings = function () {
|
||||||
|
plugins.beautylog.log("now installing " + "typings.json".yellow + " from " + config.typings[typingsCounter].blue);
|
||||||
|
plugins.typings.install({ production: false, cwd: plugins.path.join(paths.cwd, config.typings[typingsCounter]) })
|
||||||
|
.then(function () {
|
||||||
|
typingsCounterAdvance();
|
||||||
|
}, function () {
|
||||||
|
plugins.beautylog.error("something went wrong: Check if path is correct: " + config.typings[typingsCounter].blue);
|
||||||
|
typingsCounterAdvance();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
installTypings();
|
||||||
|
/* -------------------------------------------------
|
||||||
|
* ----------- second compile TS -------------------
|
||||||
|
* ----------------------------------------------- */
|
||||||
|
typingsDone.promise.then(function () {
|
||||||
|
for (var key in config.ts) {
|
||||||
|
plugins.beautylog.log("now compiling" + key.blue);
|
||||||
|
var outputPathIsDir;
|
||||||
|
try {
|
||||||
|
if (plugins.fs.statSync(plugins.path.join(paths.cwd, config.ts[key])).isDirectory()) {
|
||||||
|
outputPathIsDir = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
outputPathIsDir = false;
|
||||||
|
}
|
||||||
|
//do some evaluation of the environment
|
||||||
|
var outputNameSpecified = (!outputPathIsDir
|
||||||
|
&& (plugins.path.extname(config.ts[key]) == ".js"));
|
||||||
|
var outputName = (function () {
|
||||||
|
if (outputNameSpecified) {
|
||||||
|
return plugins.path.basename(config.ts[key]);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
var outputDir = (function () {
|
||||||
|
if (outputNameSpecified) {
|
||||||
|
return plugins.path.dirname(plugins.path.join(paths.cwd, config.ts[key]));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return plugins.path.join(paths.cwd, config.ts[key]);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
var tsStream = plugins.gulp.src(plugins.path.join(paths.cwd, key))
|
||||||
|
.pipe(plugins.g.typescript({
|
||||||
|
out: outputName,
|
||||||
|
declaration: true
|
||||||
|
}));
|
||||||
|
var stream = plugins.mergeStream([
|
||||||
|
tsStream.dts.pipe(plugins.gulp.dest(outputDir)),
|
||||||
|
tsStream.js
|
||||||
|
.pipe(plugins.g.insert.prepend('#!/usr/bin/env node\n\n'))
|
||||||
|
.pipe(plugins.gulp.dest(outputDir))
|
||||||
|
]);
|
||||||
|
moduleStream.add(stream);
|
||||||
|
}
|
||||||
|
moduleStream.on("queueDrain", function () {
|
||||||
|
plugins.beautylog.success("custom TypeScript installed successfully");
|
||||||
|
moduleStream.on("finish", function () {
|
||||||
|
done.resolve(config);
|
||||||
|
});
|
||||||
|
moduleStream.end();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return done.promise;
|
||||||
|
};
|
||||||
|
})(NpmtsCompile || (NpmtsCompile = {}));
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsTests;
|
||||||
|
(function (NpmtsTests) {
|
||||||
|
NpmtsTests.run = function (configArg) {
|
||||||
|
var done = plugins.q.defer();
|
||||||
|
var config = configArg;
|
||||||
|
var istanbul = function () {
|
||||||
|
var stream = plugins.gulp.src([plugins.path.join(paths.cwd, "index.js")])
|
||||||
|
.pipe(plugins.g.istanbul())
|
||||||
|
.pipe(plugins.g.istanbul.hookRequire());
|
||||||
|
return stream;
|
||||||
|
};
|
||||||
|
var mocha = function () {
|
||||||
|
var stream = plugins.gulp.src(["./test/test.js"])
|
||||||
|
.pipe(plugins.g.mocha())
|
||||||
|
.pipe(plugins.g.istanbul.writeReports())
|
||||||
|
.pipe(plugins.g.istanbul.enforceThresholds({ thresholds: { global: 30 } }));
|
||||||
|
return stream;
|
||||||
|
};
|
||||||
|
var coveralls = function () {
|
||||||
|
var stream = plugins.gulp.src([plugins.path.join(paths.cwd, "./coverage/lcov.info")])
|
||||||
|
.pipe(plugins.g.coveralls());
|
||||||
|
return stream;
|
||||||
|
};
|
||||||
|
istanbul().on("finish", function () {
|
||||||
|
mocha().on("finish", function () {
|
||||||
|
if (process.env.TRAVIS && config.coveralls) {
|
||||||
|
coveralls().on("finish", function () {
|
||||||
|
done.resolve(config);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
done.resolve(config);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return done.promise;
|
||||||
|
};
|
||||||
|
})(NpmtsTests || (NpmtsTests = {}));
|
||||||
|
/// <reference path="./index.ts" />
|
||||||
|
var NpmtsPromisechain;
|
||||||
|
(function (NpmtsPromisechain) {
|
||||||
|
NpmtsPromisechain.init = function () {
|
||||||
|
var promisechain;
|
||||||
|
NpmtsConfigFile.run()
|
||||||
|
.then(NpmtsOptions.run)
|
||||||
|
.then(NpmtsCompile.run)
|
||||||
|
.then(NpmtsTests.run);
|
||||||
|
return promisechain;
|
||||||
|
};
|
||||||
|
})(NpmtsPromisechain || (NpmtsPromisechain = {}));
|
||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
/// <reference path="./npmts.plugins.ts" />
|
||||||
|
/// <reference path="./npmts.cli.ts" />
|
||||||
|
/// <reference path="./npmts.paths.ts" />
|
||||||
|
/// <reference path="./npmts.configfile.ts" />
|
||||||
|
/// <reference path="./npmts.options.ts" />
|
||||||
|
/// <reference path="./npmts.compile.ts" />
|
||||||
|
/// <reference path="./npmts.tests.ts" />
|
||||||
|
/// <reference path="./npmts.promisechain.ts" />
|
||||||
|
console.log("**** starting NPMTS ****");
|
||||||
|
var plugins = NpmtsPlugins.init();
|
||||||
|
plugins.beautylog.figletSync("NPMTS");
|
||||||
|
var paths = NpmtsPaths.init();
|
||||||
|
var promisechain = NpmtsPromisechain.init();
|
@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"npmci": {
|
|
||||||
"npmAccessLevel": "public"
|
|
||||||
},
|
|
||||||
"gitzone": {
|
|
||||||
"projectType": "npm",
|
|
||||||
"module": {
|
|
||||||
"githost": "gitlab.com",
|
|
||||||
"gitscope": "gitzone",
|
|
||||||
"gitrepo": "tscoverage",
|
|
||||||
"shortDescription": "get coverage information for gitzone projects",
|
|
||||||
"npmPackagename": "@gitzone/tscoverage",
|
|
||||||
"license": "MIT"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
11399
package-lock.json
generated
11399
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
64
package.json
64
package.json
@ -1,52 +1,44 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tscoverage",
|
"name": "npmts",
|
||||||
"version": "9.0.2",
|
"version": "2.2.3",
|
||||||
"description": "get coverage information for gitzone projects",
|
"description": "write npm modules with TypeScript",
|
||||||
"main": "dist_ts/index.js",
|
"main": "index.js",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "./index.d.ts",
|
||||||
"bin": {
|
"bin": {
|
||||||
"tscoverage": "cli.js"
|
"npmts": "./index.js"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/)",
|
"test": "(cd compile && node compile.js) && (cd test/assets && node ../../index.js)",
|
||||||
"build": "(tsbuild --web)"
|
"release": "(git add -A && git commit -m 'update' && git push origin master && npm version patch && npm publish)"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://gitlab.com/gitzone/npmts.git"
|
"url": "git+https://github.com/pushrocks/npmts.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"TypeScript",
|
"TypeScript",
|
||||||
"Declaration"
|
"Declaration"
|
||||||
],
|
],
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless Digital UG (haftungsbeschraenkt)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitlab.com/gitzone/npmts/issues"
|
"url": "https://github.com/pushrocks/npmts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
"homepage": "https://github.com/pushrocks/npmts#readme",
|
||||||
"dependencies": {},
|
"dependencies": {
|
||||||
"devDependencies": {
|
"beautylog": "2.1.1",
|
||||||
"@gitzone/tsbuild": "^2.1.24",
|
"fs-extra": "^0.26.5",
|
||||||
"@gitzone/tsbundle": "^1.0.69",
|
"gulp": "3.9.1",
|
||||||
"@gitzone/tstest": "^1.0.33",
|
"gulp-coveralls": "^0.1.4",
|
||||||
"@gitzone/tswatch": "^1.0.46",
|
"gulp-insert": "0.5.0",
|
||||||
"@pushrocks/tapbundle": "^3.2.1",
|
"gulp-istanbul": "^0.10.3",
|
||||||
"@types/node": "^10.0.3",
|
"gulp-mocha": "^2.2.0",
|
||||||
"tslint": "^6.1.2",
|
"gulp-typescript": "2.11.0",
|
||||||
"tslint-config-prettier": "^1.18.0"
|
"gulp-typings": "0.0.0",
|
||||||
},
|
"merge2": "1.0.1",
|
||||||
"private": true,
|
"q": "^1.4.1",
|
||||||
"files": [
|
"smartcli": "0.0.11",
|
||||||
"ts/**/*",
|
"smartfile": "0.0.11",
|
||||||
"ts_web/**/*",
|
"typings": "^0.6.8"
|
||||||
"dist/**/*",
|
}
|
||||||
"dist_*/**/*",
|
|
||||||
"dist_ts/**/*",
|
|
||||||
"dist_ts_web/**/*",
|
|
||||||
"assets/**/*",
|
|
||||||
"cli.js",
|
|
||||||
"npmextra.json",
|
|
||||||
"readme.md"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
39
readme.md
39
readme.md
@ -1,39 +0,0 @@
|
|||||||
# @gitzone/tscoverage
|
|
||||||
get coverage information for gitzone projects
|
|
||||||
|
|
||||||
## Availabililty and Links
|
|
||||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@gitzone/tscoverage)
|
|
||||||
* [gitlab.com (source)](https://gitlab.com/gitzone/tscoverage)
|
|
||||||
* [github.com (source mirror)](https://github.com/gitzone/tscoverage)
|
|
||||||
* [docs (typedoc)](https://gitzone.gitlab.io/tscoverage/)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
|
|
||||||
Status Category | Status Badge
|
|
||||||
-- | --
|
|
||||||
GitLab Pipelines | [](https://lossless.cloud)
|
|
||||||
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
|
||||||
npm | [](https://lossless.cloud)
|
|
||||||
Snyk | [](https://lossless.cloud)
|
|
||||||
TypeScript Support | [](https://lossless.cloud)
|
|
||||||
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
|
||||||
Code Style | [](https://lossless.cloud)
|
|
||||||
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
|
||||||
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
|
||||||
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
|
||||||
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
tscoverage will run tests while computing coverage for your gitzone project.
|
|
||||||
|
|
||||||
## Contribution
|
|
||||||
|
|
||||||
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
|
||||||
|
|
||||||
For further information read the linked docs at the top of this readme.
|
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
|
||||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
|
||||||
|
|
||||||
[](https://maintainedby.lossless.com)
|
|
2
test/assets/coverage/coverage-final.json
Normal file
2
test/assets/coverage/coverage-final.json
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
{
|
||||||
|
"/Users/philkunz/github/pushrocks/npmts/test/assets/index.js":{"path":"/Users/philkunz/github/pushrocks/npmts/test/assets/index.js","s":{"1":1,"2":1,"3":1},"b":{},"f":{"1":1},"fnMap":{"1":{"name":"(anonymous_1)","line":5,"loc":{"start":{"line":5,"column":18},"end":{"line":5,"column":30}}}},"statementMap":{"1":{"start":{"line":4,"column":0},"end":{"line":8,"column":2}},"2":{"start":{"line":6,"column":8},"end":{"line":6,"column":46}},"3":{"start":{"line":9,"column":0},"end":{"line":9,"column":28}}},"branchMap":{},"l":{"4":1,"6":1,"9":1}}}
|
93
test/assets/coverage/lcov-report/assets/index.html
Normal file
93
test/assets/coverage/lcov-report/assets/index.html
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Code coverage report for assets/</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="stylesheet" href="../prettify.css" />
|
||||||
|
<link rel="stylesheet" href="../base.css" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<style type='text/css'>
|
||||||
|
.coverage-summary .sorter {
|
||||||
|
background-image: url(../sort-arrow-sprite.png);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class='wrapper'>
|
||||||
|
<div class='pad1'>
|
||||||
|
<h1>
|
||||||
|
<a href="../index.html">all files</a> assets/
|
||||||
|
</h1>
|
||||||
|
<div class='clearfix'>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Statements</span>
|
||||||
|
<span class='fraction'>3/3</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Branches</span>
|
||||||
|
<span class='fraction'>0/0</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Functions</span>
|
||||||
|
<span class='fraction'>1/1</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Lines</span>
|
||||||
|
<span class='fraction'>3/3</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class='status-line high'></div>
|
||||||
|
<div class="pad1">
|
||||||
|
<table class="coverage-summary">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
||||||
|
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
||||||
|
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
||||||
|
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
||||||
|
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
||||||
|
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
||||||
|
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody><tr>
|
||||||
|
<td class="file high" data-value="index.js"><a href="index.js.html">index.js</a></td>
|
||||||
|
<td data-value="100" class="pic high"><div class="chart"><div class="cover-fill cover-full" style="width: 100%;"></div><div class="cover-empty" style="width:0%;"></div></div></td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="3" class="abs high">3/3</td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="0" class="abs high">0/0</td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="1" class="abs high">1/1</td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="3" class="abs high">3/3</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div><div class='push'></div><!-- for sticky footer -->
|
||||||
|
</div><!-- /wrapper -->
|
||||||
|
<div class='footer quiet pad2 space-top1 center small'>
|
||||||
|
Code coverage
|
||||||
|
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Thu Feb 11 2016 19:08:46 GMT+0100 (CET)
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="../prettify.js"></script>
|
||||||
|
<script>
|
||||||
|
window.onload = function () {
|
||||||
|
if (typeof prettyPrint === 'function') {
|
||||||
|
prettyPrint();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<script src="../sorter.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
92
test/assets/coverage/lcov-report/assets/index.js.html
Normal file
92
test/assets/coverage/lcov-report/assets/index.js.html
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Code coverage report for assets/index.js</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="stylesheet" href="../prettify.css" />
|
||||||
|
<link rel="stylesheet" href="../base.css" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<style type='text/css'>
|
||||||
|
.coverage-summary .sorter {
|
||||||
|
background-image: url(../sort-arrow-sprite.png);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class='wrapper'>
|
||||||
|
<div class='pad1'>
|
||||||
|
<h1>
|
||||||
|
<a href="../index.html">all files</a> / <a href="index.html">assets/</a> index.js
|
||||||
|
</h1>
|
||||||
|
<div class='clearfix'>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Statements</span>
|
||||||
|
<span class='fraction'>3/3</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Branches</span>
|
||||||
|
<span class='fraction'>0/0</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Functions</span>
|
||||||
|
<span class='fraction'>1/1</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Lines</span>
|
||||||
|
<span class='fraction'>3/3</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class='status-line high'></div>
|
||||||
|
<pre><table class="coverage">
|
||||||
|
<tr><td class="line-count quiet">1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
4
|
||||||
|
5
|
||||||
|
6
|
||||||
|
7
|
||||||
|
8
|
||||||
|
9
|
||||||
|
10</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
||||||
|
<span class="cline-any cline-neutral"> </span>
|
||||||
|
<span class="cline-any cline-neutral"> </span>
|
||||||
|
<span class="cline-any cline-yes">1×</span>
|
||||||
|
<span class="cline-any cline-neutral"> </span>
|
||||||
|
<span class="cline-any cline-yes">1×</span>
|
||||||
|
<span class="cline-any cline-neutral"> </span>
|
||||||
|
<span class="cline-any cline-neutral"> </span>
|
||||||
|
<span class="cline-any cline-yes">1×</span>
|
||||||
|
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">#!/usr/bin/env node
|
||||||
|
|
||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
var testplugin = {
|
||||||
|
logSomething: function () {
|
||||||
|
console.log("only function executed");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
module.exports = testplugin;
|
||||||
|
</pre></td></tr>
|
||||||
|
</table></pre>
|
||||||
|
<div class='push'></div><!-- for sticky footer -->
|
||||||
|
</div><!-- /wrapper -->
|
||||||
|
<div class='footer quiet pad2 space-top1 center small'>
|
||||||
|
Code coverage
|
||||||
|
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Thu Feb 11 2016 19:08:46 GMT+0100 (CET)
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="../prettify.js"></script>
|
||||||
|
<script>
|
||||||
|
window.onload = function () {
|
||||||
|
if (typeof prettyPrint === 'function') {
|
||||||
|
prettyPrint();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<script src="../sorter.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
212
test/assets/coverage/lcov-report/base.css
Normal file
212
test/assets/coverage/lcov-report/base.css
Normal file
@ -0,0 +1,212 @@
|
|||||||
|
body, html {
|
||||||
|
margin:0; padding: 0;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
font-family: Helvetica Neue, Helvetica, Arial;
|
||||||
|
font-size: 14px;
|
||||||
|
color:#333;
|
||||||
|
}
|
||||||
|
.small { font-size: 12px;; }
|
||||||
|
*, *:after, *:before {
|
||||||
|
-webkit-box-sizing:border-box;
|
||||||
|
-moz-box-sizing:border-box;
|
||||||
|
box-sizing:border-box;
|
||||||
|
}
|
||||||
|
h1 { font-size: 20px; margin: 0;}
|
||||||
|
h2 { font-size: 14px; }
|
||||||
|
pre {
|
||||||
|
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
-moz-tab-size: 2;
|
||||||
|
-o-tab-size: 2;
|
||||||
|
tab-size: 2;
|
||||||
|
}
|
||||||
|
a { color:#0074D9; text-decoration:none; }
|
||||||
|
a:hover { text-decoration:underline; }
|
||||||
|
.strong { font-weight: bold; }
|
||||||
|
.space-top1 { padding: 10px 0 0 0; }
|
||||||
|
.pad2y { padding: 20px 0; }
|
||||||
|
.pad1y { padding: 10px 0; }
|
||||||
|
.pad2x { padding: 0 20px; }
|
||||||
|
.pad2 { padding: 20px; }
|
||||||
|
.pad1 { padding: 10px; }
|
||||||
|
.space-left2 { padding-left:55px; }
|
||||||
|
.space-right2 { padding-right:20px; }
|
||||||
|
.center { text-align:center; }
|
||||||
|
.clearfix { display:block; }
|
||||||
|
.clearfix:after {
|
||||||
|
content:'';
|
||||||
|
display:block;
|
||||||
|
height:0;
|
||||||
|
clear:both;
|
||||||
|
visibility:hidden;
|
||||||
|
}
|
||||||
|
.fl { float: left; }
|
||||||
|
@media only screen and (max-width:640px) {
|
||||||
|
.col3 { width:100%; max-width:100%; }
|
||||||
|
.hide-mobile { display:none!important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.quiet {
|
||||||
|
color: #7f7f7f;
|
||||||
|
color: rgba(0,0,0,0.5);
|
||||||
|
}
|
||||||
|
.quiet a { opacity: 0.7; }
|
||||||
|
|
||||||
|
.fraction {
|
||||||
|
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
||||||
|
font-size: 10px;
|
||||||
|
color: #555;
|
||||||
|
background: #E8E8E8;
|
||||||
|
padding: 4px 5px;
|
||||||
|
border-radius: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.path a:link, div.path a:visited { color: #333; }
|
||||||
|
table.coverage {
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.coverage td {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
table.coverage td.line-count {
|
||||||
|
text-align: right;
|
||||||
|
padding: 0 5px 0 20px;
|
||||||
|
}
|
||||||
|
table.coverage td.line-coverage {
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 10px;
|
||||||
|
min-width:20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.coverage td span.cline-any {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0 5px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.missing-if-branch {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 5px;
|
||||||
|
border-radius: 3px;
|
||||||
|
position: relative;
|
||||||
|
padding: 0 4px;
|
||||||
|
background: #333;
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skip-if-branch {
|
||||||
|
display: none;
|
||||||
|
margin-right: 10px;
|
||||||
|
position: relative;
|
||||||
|
padding: 0 4px;
|
||||||
|
background: #ccc;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.missing-if-branch .typ, .skip-if-branch .typ {
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
.coverage-summary {
|
||||||
|
border-collapse: collapse;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.coverage-summary tr { border-bottom: 1px solid #bbb; }
|
||||||
|
.keyline-all { border: 1px solid #ddd; }
|
||||||
|
.coverage-summary td, .coverage-summary th { padding: 10px; }
|
||||||
|
.coverage-summary tbody { border: 1px solid #bbb; }
|
||||||
|
.coverage-summary td { border-right: 1px solid #bbb; }
|
||||||
|
.coverage-summary td:last-child { border-right: none; }
|
||||||
|
.coverage-summary th {
|
||||||
|
text-align: left;
|
||||||
|
font-weight: normal;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.coverage-summary th.file { border-right: none !important; }
|
||||||
|
.coverage-summary th.pct { }
|
||||||
|
.coverage-summary th.pic,
|
||||||
|
.coverage-summary th.abs,
|
||||||
|
.coverage-summary td.pct,
|
||||||
|
.coverage-summary td.abs { text-align: right; }
|
||||||
|
.coverage-summary td.file { white-space: nowrap; }
|
||||||
|
.coverage-summary td.pic { min-width: 120px !important; }
|
||||||
|
.coverage-summary tfoot td { }
|
||||||
|
|
||||||
|
.coverage-summary .sorter {
|
||||||
|
height: 10px;
|
||||||
|
width: 7px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 0.5em;
|
||||||
|
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
||||||
|
}
|
||||||
|
.coverage-summary .sorted .sorter {
|
||||||
|
background-position: 0 -20px;
|
||||||
|
}
|
||||||
|
.coverage-summary .sorted-desc .sorter {
|
||||||
|
background-position: 0 -10px;
|
||||||
|
}
|
||||||
|
.status-line { height: 10px; }
|
||||||
|
/* dark red */
|
||||||
|
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
|
||||||
|
.low .chart { border:1px solid #C21F39 }
|
||||||
|
/* medium red */
|
||||||
|
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
|
||||||
|
/* light red */
|
||||||
|
.low, .cline-no { background:#FCE1E5 }
|
||||||
|
/* light green */
|
||||||
|
.high, .cline-yes { background:rgb(230,245,208) }
|
||||||
|
/* medium green */
|
||||||
|
.cstat-yes { background:rgb(161,215,106) }
|
||||||
|
/* dark green */
|
||||||
|
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
|
||||||
|
.high .chart { border:1px solid rgb(77,146,33) }
|
||||||
|
|
||||||
|
|
||||||
|
.medium .chart { border:1px solid #666; }
|
||||||
|
.medium .cover-fill { background: #666; }
|
||||||
|
|
||||||
|
.cbranch-no { background: yellow !important; color: #111; }
|
||||||
|
|
||||||
|
.cstat-skip { background: #ddd; color: #111; }
|
||||||
|
.fstat-skip { background: #ddd; color: #111 !important; }
|
||||||
|
.cbranch-skip { background: #ddd !important; color: #111; }
|
||||||
|
|
||||||
|
span.cline-neutral { background: #eaeaea; }
|
||||||
|
.medium { background: #eaeaea; }
|
||||||
|
|
||||||
|
.cover-fill, .cover-empty {
|
||||||
|
display:inline-block;
|
||||||
|
height: 12px;
|
||||||
|
}
|
||||||
|
.chart {
|
||||||
|
line-height: 0;
|
||||||
|
}
|
||||||
|
.cover-empty {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
.cover-full {
|
||||||
|
border-right: none !important;
|
||||||
|
}
|
||||||
|
pre.prettyprint {
|
||||||
|
border: none !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
.com { color: #999 !important; }
|
||||||
|
.ignore-none { color: #999; font-weight: normal; }
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
min-height: 100%;
|
||||||
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0 auto -48px;
|
||||||
|
}
|
||||||
|
.footer, .push {
|
||||||
|
height: 48px;
|
||||||
|
}
|
93
test/assets/coverage/lcov-report/index.html
Normal file
93
test/assets/coverage/lcov-report/index.html
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Code coverage report for All files</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="stylesheet" href="prettify.css" />
|
||||||
|
<link rel="stylesheet" href="base.css" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<style type='text/css'>
|
||||||
|
.coverage-summary .sorter {
|
||||||
|
background-image: url(sort-arrow-sprite.png);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class='wrapper'>
|
||||||
|
<div class='pad1'>
|
||||||
|
<h1>
|
||||||
|
/
|
||||||
|
</h1>
|
||||||
|
<div class='clearfix'>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Statements</span>
|
||||||
|
<span class='fraction'>3/3</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Branches</span>
|
||||||
|
<span class='fraction'>0/0</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Functions</span>
|
||||||
|
<span class='fraction'>1/1</span>
|
||||||
|
</div>
|
||||||
|
<div class='fl pad1y space-right2'>
|
||||||
|
<span class="strong">100% </span>
|
||||||
|
<span class="quiet">Lines</span>
|
||||||
|
<span class='fraction'>3/3</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class='status-line high'></div>
|
||||||
|
<div class="pad1">
|
||||||
|
<table class="coverage-summary">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
||||||
|
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
||||||
|
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
||||||
|
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
||||||
|
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
||||||
|
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
||||||
|
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody><tr>
|
||||||
|
<td class="file high" data-value="assets/"><a href="assets/index.html">assets/</a></td>
|
||||||
|
<td data-value="100" class="pic high"><div class="chart"><div class="cover-fill cover-full" style="width: 100%;"></div><div class="cover-empty" style="width:0%;"></div></div></td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="3" class="abs high">3/3</td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="0" class="abs high">0/0</td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="1" class="abs high">1/1</td>
|
||||||
|
<td data-value="100" class="pct high">100%</td>
|
||||||
|
<td data-value="3" class="abs high">3/3</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div><div class='push'></div><!-- for sticky footer -->
|
||||||
|
</div><!-- /wrapper -->
|
||||||
|
<div class='footer quiet pad2 space-top1 center small'>
|
||||||
|
Code coverage
|
||||||
|
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Thu Feb 11 2016 19:08:46 GMT+0100 (CET)
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="prettify.js"></script>
|
||||||
|
<script>
|
||||||
|
window.onload = function () {
|
||||||
|
if (typeof prettyPrint === 'function') {
|
||||||
|
prettyPrint();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<script src="sorter.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
1
test/assets/coverage/lcov-report/prettify.css
Normal file
1
test/assets/coverage/lcov-report/prettify.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
|
1
test/assets/coverage/lcov-report/prettify.js
Normal file
1
test/assets/coverage/lcov-report/prettify.js
Normal file
File diff suppressed because one or more lines are too long
BIN
test/assets/coverage/lcov-report/sort-arrow-sprite.png
Normal file
BIN
test/assets/coverage/lcov-report/sort-arrow-sprite.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 209 B |
158
test/assets/coverage/lcov-report/sorter.js
Normal file
158
test/assets/coverage/lcov-report/sorter.js
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
var addSorting = (function () {
|
||||||
|
"use strict";
|
||||||
|
var cols,
|
||||||
|
currentSort = {
|
||||||
|
index: 0,
|
||||||
|
desc: false
|
||||||
|
};
|
||||||
|
|
||||||
|
// returns the summary table element
|
||||||
|
function getTable() { return document.querySelector('.coverage-summary'); }
|
||||||
|
// returns the thead element of the summary table
|
||||||
|
function getTableHeader() { return getTable().querySelector('thead tr'); }
|
||||||
|
// returns the tbody element of the summary table
|
||||||
|
function getTableBody() { return getTable().querySelector('tbody'); }
|
||||||
|
// returns the th element for nth column
|
||||||
|
function getNthColumn(n) { return getTableHeader().querySelectorAll('th')[n]; }
|
||||||
|
|
||||||
|
// loads all columns
|
||||||
|
function loadColumns() {
|
||||||
|
var colNodes = getTableHeader().querySelectorAll('th'),
|
||||||
|
colNode,
|
||||||
|
cols = [],
|
||||||
|
col,
|
||||||
|
i;
|
||||||
|
|
||||||
|
for (i = 0; i < colNodes.length; i += 1) {
|
||||||
|
colNode = colNodes[i];
|
||||||
|
col = {
|
||||||
|
key: colNode.getAttribute('data-col'),
|
||||||
|
sortable: !colNode.getAttribute('data-nosort'),
|
||||||
|
type: colNode.getAttribute('data-type') || 'string'
|
||||||
|
};
|
||||||
|
cols.push(col);
|
||||||
|
if (col.sortable) {
|
||||||
|
col.defaultDescSort = col.type === 'number';
|
||||||
|
colNode.innerHTML = colNode.innerHTML + '<span class="sorter"></span>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return cols;
|
||||||
|
}
|
||||||
|
// attaches a data attribute to every tr element with an object
|
||||||
|
// of data values keyed by column name
|
||||||
|
function loadRowData(tableRow) {
|
||||||
|
var tableCols = tableRow.querySelectorAll('td'),
|
||||||
|
colNode,
|
||||||
|
col,
|
||||||
|
data = {},
|
||||||
|
i,
|
||||||
|
val;
|
||||||
|
for (i = 0; i < tableCols.length; i += 1) {
|
||||||
|
colNode = tableCols[i];
|
||||||
|
col = cols[i];
|
||||||
|
val = colNode.getAttribute('data-value');
|
||||||
|
if (col.type === 'number') {
|
||||||
|
val = Number(val);
|
||||||
|
}
|
||||||
|
data[col.key] = val;
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
// loads all row data
|
||||||
|
function loadData() {
|
||||||
|
var rows = getTableBody().querySelectorAll('tr'),
|
||||||
|
i;
|
||||||
|
|
||||||
|
for (i = 0; i < rows.length; i += 1) {
|
||||||
|
rows[i].data = loadRowData(rows[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// sorts the table using the data for the ith column
|
||||||
|
function sortByIndex(index, desc) {
|
||||||
|
var key = cols[index].key,
|
||||||
|
sorter = function (a, b) {
|
||||||
|
a = a.data[key];
|
||||||
|
b = b.data[key];
|
||||||
|
return a < b ? -1 : a > b ? 1 : 0;
|
||||||
|
},
|
||||||
|
finalSorter = sorter,
|
||||||
|
tableBody = document.querySelector('.coverage-summary tbody'),
|
||||||
|
rowNodes = tableBody.querySelectorAll('tr'),
|
||||||
|
rows = [],
|
||||||
|
i;
|
||||||
|
|
||||||
|
if (desc) {
|
||||||
|
finalSorter = function (a, b) {
|
||||||
|
return -1 * sorter(a, b);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < rowNodes.length; i += 1) {
|
||||||
|
rows.push(rowNodes[i]);
|
||||||
|
tableBody.removeChild(rowNodes[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
rows.sort(finalSorter);
|
||||||
|
|
||||||
|
for (i = 0; i < rows.length; i += 1) {
|
||||||
|
tableBody.appendChild(rows[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// removes sort indicators for current column being sorted
|
||||||
|
function removeSortIndicators() {
|
||||||
|
var col = getNthColumn(currentSort.index),
|
||||||
|
cls = col.className;
|
||||||
|
|
||||||
|
cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
|
||||||
|
col.className = cls;
|
||||||
|
}
|
||||||
|
// adds sort indicators for current column being sorted
|
||||||
|
function addSortIndicators() {
|
||||||
|
getNthColumn(currentSort.index).className += currentSort.desc ? ' sorted-desc' : ' sorted';
|
||||||
|
}
|
||||||
|
// adds event listeners for all sorter widgets
|
||||||
|
function enableUI() {
|
||||||
|
var i,
|
||||||
|
el,
|
||||||
|
ithSorter = function ithSorter(i) {
|
||||||
|
var col = cols[i];
|
||||||
|
|
||||||
|
return function () {
|
||||||
|
var desc = col.defaultDescSort;
|
||||||
|
|
||||||
|
if (currentSort.index === i) {
|
||||||
|
desc = !currentSort.desc;
|
||||||
|
}
|
||||||
|
sortByIndex(i, desc);
|
||||||
|
removeSortIndicators();
|
||||||
|
currentSort.index = i;
|
||||||
|
currentSort.desc = desc;
|
||||||
|
addSortIndicators();
|
||||||
|
};
|
||||||
|
};
|
||||||
|
for (i =0 ; i < cols.length; i += 1) {
|
||||||
|
if (cols[i].sortable) {
|
||||||
|
// add the click event handler on the th so users
|
||||||
|
// dont have to click on those tiny arrows
|
||||||
|
el = getNthColumn(i).querySelector('.sorter').parentElement;
|
||||||
|
if (el.addEventListener) {
|
||||||
|
el.addEventListener('click', ithSorter(i));
|
||||||
|
} else {
|
||||||
|
el.attachEvent('onclick', ithSorter(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// adds sorting functionality to the UI
|
||||||
|
return function () {
|
||||||
|
if (!getTable()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
cols = loadColumns();
|
||||||
|
loadData(cols);
|
||||||
|
addSortIndicators();
|
||||||
|
enableUI();
|
||||||
|
};
|
||||||
|
})();
|
||||||
|
|
||||||
|
window.addEventListener('load', addSorting);
|
14
test/assets/coverage/lcov.info
Normal file
14
test/assets/coverage/lcov.info
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
TN:
|
||||||
|
SF:/Users/philkunz/github/pushrocks/npmts/test/assets/index.js
|
||||||
|
FN:5,(anonymous_1)
|
||||||
|
FNF:1
|
||||||
|
FNH:1
|
||||||
|
FNDA:1,(anonymous_1)
|
||||||
|
DA:4,1
|
||||||
|
DA:6,1
|
||||||
|
DA:9,1
|
||||||
|
LF:3
|
||||||
|
LH:3
|
||||||
|
BRF:0
|
||||||
|
BRH:0
|
||||||
|
end_of_record
|
2
test/assets/customdir/custom.js
Normal file
2
test/assets/customdir/custom.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
var hello = "hello";
|
||||||
|
//# sourceMappingURL=custom.js.map
|
1
test/assets/customdir/custom.js.map
Normal file
1
test/assets/customdir/custom.js.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"custom.js","sourceRoot":"","sources":["custom.ts"],"names":[],"mappings":"AAAA,IAAI,KAAK,GAAG,OAAO,CAAC"}
|
1
test/assets/customdir/custom.ts
Normal file
1
test/assets/customdir/custom.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
var hello = "hello";
|
2
test/assets/customdir/tsfile1.js
Normal file
2
test/assets/customdir/tsfile1.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
var something = "something";
|
||||||
|
//# sourceMappingURL=tsfile1.js.map
|
1
test/assets/customdir/tsfile1.js.map
Normal file
1
test/assets/customdir/tsfile1.js.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"tsfile1.js","sourceRoot":"","sources":["tsfile1.ts"],"names":[],"mappings":"AAAA,IAAI,SAAS,GAAG,WAAW,CAAC"}
|
1
test/assets/customdir/tsfile1.ts
Normal file
1
test/assets/customdir/tsfile1.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
var something = "something";
|
7
test/assets/customdir/typings.json
Normal file
7
test/assets/customdir/typings.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"ambientDependencies": {
|
||||||
|
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts#78d36dd49b6b55b9fdfe61776a12bf05c8b07777",
|
||||||
|
"colors": "github:DefinitelyTyped/DefinitelyTyped/colors/colors.d.ts#09e37435ffb2c56a6f908081194a74756f24f99d",
|
||||||
|
"vinyl": "github:DefinitelyTyped/DefinitelyTyped/vinyl/vinyl.d.ts#78d36dd49b6b55b9fdfe61776a12bf05c8b07777"
|
||||||
|
}
|
||||||
|
}
|
4
test/assets/index.d.ts
vendored
Normal file
4
test/assets/index.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
/// <reference path="ts/typings/main.d.ts" />
|
||||||
|
declare var testplugin: {
|
||||||
|
logSomething: () => void;
|
||||||
|
};
|
9
test/assets/index.js
Normal file
9
test/assets/index.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
var testplugin = {
|
||||||
|
logSomething: function () {
|
||||||
|
console.log("only function executed");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
module.exports = testplugin;
|
13
test/assets/npmts.json
Normal file
13
test/assets/npmts.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"mode":"default",
|
||||||
|
"ts":{
|
||||||
|
"./customdir/*.ts":"./"
|
||||||
|
},
|
||||||
|
"typings":[
|
||||||
|
"./ts",
|
||||||
|
"./subts1/",
|
||||||
|
"./subts2/",
|
||||||
|
"./customdir"
|
||||||
|
],
|
||||||
|
"coveralls":true
|
||||||
|
}
|
13
test/assets/package.json
Normal file
13
test/assets/package.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"name": "test",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "(npmts)"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
}
|
||||||
|
}
|
7
test/assets/subts1/typings.json
Normal file
7
test/assets/subts1/typings.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"ambientDependencies": {
|
||||||
|
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts#78d36dd49b6b55b9fdfe61776a12bf05c8b07777",
|
||||||
|
"colors": "github:DefinitelyTyped/DefinitelyTyped/colors/colors.d.ts#09e37435ffb2c56a6f908081194a74756f24f99d",
|
||||||
|
"vinyl": "github:DefinitelyTyped/DefinitelyTyped/vinyl/vinyl.d.ts#78d36dd49b6b55b9fdfe61776a12bf05c8b07777"
|
||||||
|
}
|
||||||
|
}
|
2
test/assets/test/test.d.ts
vendored
Normal file
2
test/assets/test/test.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/// <reference path="ts/typings/main.d.ts" />
|
||||||
|
declare var testplugin: any;
|
12
test/assets/test/test.js
Normal file
12
test/assets/test/test.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
console.log("**** starting test ****");
|
||||||
|
var testplugin = require("../index.js");
|
||||||
|
describe("testplugins", function () {
|
||||||
|
describe(".logSomething", function () {
|
||||||
|
it("should log something", function () {
|
||||||
|
testplugin.logSomething();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
8
test/assets/ts/index.js
Normal file
8
test/assets/ts/index.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
var testplugin = {
|
||||||
|
logSomething: function () {
|
||||||
|
console.log("only function executed");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
module.exports = testplugin;
|
||||||
|
//# sourceMappingURL=index.js.map
|
1
test/assets/ts/index.js.map
Normal file
1
test/assets/ts/index.js.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,IAAI,UAAU,GAAG;IACb,YAAY,EAAE;QACV,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,CAAC;IAC1C,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,GAAG,UAAU,CAAC"}
|
7
test/assets/ts/index.ts
Normal file
7
test/assets/ts/index.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
var testplugin = {
|
||||||
|
logSomething: function(){
|
||||||
|
console.log("only function executed");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
module.exports = testplugin;
|
11
test/assets/ts/test.js
Normal file
11
test/assets/ts/test.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
console.log("**** starting test ****");
|
||||||
|
var testplugin = require("../index.js");
|
||||||
|
describe("testplugins", function () {
|
||||||
|
describe(".logSomething", function () {
|
||||||
|
it("should log something", function () {
|
||||||
|
testplugin.logSomething();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
//# sourceMappingURL=test.js.map
|
1
test/assets/ts/test.js.map
Normal file
1
test/assets/ts/test.js.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"test.js","sourceRoot":"","sources":["test.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,OAAO,CAAC,GAAG,CAAC,yBAAyB,CAAC,CAAC;AACvC,IAAI,UAAU,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;AACxC,QAAQ,CAAC,aAAa,EAAC;IACnB,QAAQ,CAAC,eAAe,EAAC;QACrB,EAAE,CAAC,sBAAsB,EAAC;YACtB,UAAU,CAAC,YAAY,EAAE,CAAA;QAC7B,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC"}
|
10
test/assets/ts/test.ts
Normal file
10
test/assets/ts/test.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
console.log("**** starting test ****");
|
||||||
|
var testplugin = require("../index.js");
|
||||||
|
describe("testplugins",function(){
|
||||||
|
describe(".logSomething",function(){
|
||||||
|
it("should log something",function(){
|
||||||
|
testplugin.logSomething()
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
7
test/assets/ts/typings.json
Normal file
7
test/assets/ts/typings.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"ambientDependencies": {
|
||||||
|
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts#78d36dd49b6b55b9fdfe61776a12bf05c8b07777",
|
||||||
|
"colors": "github:DefinitelyTyped/DefinitelyTyped/colors/colors.d.ts#09e37435ffb2c56a6f908081194a74756f24f99d",
|
||||||
|
"vinyl": "github:DefinitelyTyped/DefinitelyTyped/vinyl/vinyl.d.ts#78d36dd49b6b55b9fdfe61776a12bf05c8b07777"
|
||||||
|
}
|
||||||
|
}
|
1
test/assets/tsfile1.d.ts
vendored
Normal file
1
test/assets/tsfile1.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
declare var something: string;
|
3
test/assets/tsfile1.js
Normal file
3
test/assets/tsfile1.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
var something = "something";
|
@ -1,7 +0,0 @@
|
|||||||
import { tap, expect } from '@pushrocks/tapbundle';
|
|
||||||
|
|
||||||
tap.test('should run a test', async () => {
|
|
||||||
console.log('hi there');
|
|
||||||
});
|
|
||||||
|
|
||||||
tap.start();
|
|
15
ts/index.ts
15
ts/index.ts
@ -1 +1,14 @@
|
|||||||
console.log('tscoverage');
|
/// <reference path="./typings/main.d.ts" />
|
||||||
|
/// <reference path="./npmts.plugins.ts" />
|
||||||
|
/// <reference path="./npmts.cli.ts" />
|
||||||
|
/// <reference path="./npmts.paths.ts" />
|
||||||
|
/// <reference path="./npmts.configfile.ts" />
|
||||||
|
/// <reference path="./npmts.options.ts" />
|
||||||
|
/// <reference path="./npmts.compile.ts" />
|
||||||
|
/// <reference path="./npmts.tests.ts" />
|
||||||
|
/// <reference path="./npmts.promisechain.ts" />
|
||||||
|
console.log("**** starting NPMTS ****");
|
||||||
|
var plugins = NpmtsPlugins.init();
|
||||||
|
plugins.beautylog.figletSync("NPMTS");
|
||||||
|
var paths = NpmtsPaths.init();
|
||||||
|
var promisechain = NpmtsPromisechain.init();
|
||||||
|
1
ts/npmts.cli.ts
Normal file
1
ts/npmts.cli.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
/// <reference path="./index.ts" />
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user