Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
dd9df9f5ee | |||
c109952a22 | |||
b14c79f6ef |
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -1,8 +1,10 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
/// <reference path="./typings/index.d.ts" />
|
/// <reference path="./typings/index.d.ts" />
|
||||||
console.log("**** starting NPMTS ****");
|
var early = require("early");
|
||||||
|
early.start("NPMTS");
|
||||||
var plugins = require("./npmts.plugins");
|
var plugins = require("./npmts.plugins");
|
||||||
var npmts_promisechain_1 = require("./npmts.promisechain");
|
var npmts_promisechain_1 = require("./npmts.promisechain");
|
||||||
|
early.stop();
|
||||||
plugins.beautylog.figletSync("NPMTS");
|
plugins.beautylog.figletSync("NPMTS");
|
||||||
try {
|
try {
|
||||||
npmts_promisechain_1.promisechain();
|
npmts_promisechain_1.promisechain();
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "5.1.9",
|
"version": "5.1.11",
|
||||||
"description": "write npm modules with TypeScript",
|
"description": "write npm modules with TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
@ -26,7 +26,8 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/pushrocks/npmts#readme",
|
"homepage": "https://github.com/pushrocks/npmts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"beautylog": "5.0.4",
|
"beautylog": "5.0.5",
|
||||||
|
"early": "^1.0.7",
|
||||||
"fs-extra": "^0.30.0",
|
"fs-extra": "^0.30.0",
|
||||||
"gulp": "3.9.1",
|
"gulp": "3.9.1",
|
||||||
"gulp-codecov": "^2.0.1",
|
"gulp-codecov": "^2.0.1",
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
/// <reference path="./typings/index.d.ts" />
|
/// <reference path="./typings/index.d.ts" />
|
||||||
console.log("**** starting NPMTS ****");
|
import * as early from "early";
|
||||||
|
early.start("NPMTS");
|
||||||
import * as plugins from "./npmts.plugins"
|
import * as plugins from "./npmts.plugins"
|
||||||
import {promisechain} from "./npmts.promisechain";
|
import {promisechain} from "./npmts.promisechain";
|
||||||
|
early.stop();
|
||||||
|
|
||||||
plugins.beautylog.figletSync("NPMTS");
|
plugins.beautylog.figletSync("NPMTS");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Reference in New Issue
Block a user