Compare commits

..

5 Commits

Author SHA1 Message Date
f39daca6aa 4.0.13 2016-08-03 12:25:37 +02:00
e70db71ec4 update type versions 2016-08-03 12:25:15 +02:00
50ef41d5d4 add npm_registry environment 2016-07-20 02:34:14 +02:00
2a417ba18f add npmdocker section to npmextra.json 2016-07-20 02:32:02 +02:00
3516189940 update test js 2016-07-20 02:27:05 +02:00
5 changed files with 10 additions and 7 deletions

View File

@ -28,6 +28,7 @@ testSTABLE:
release:
stage: release
environment: npm_registry
script:
- npmci publish
only:

View File

@ -2,5 +2,8 @@
"npmts":{
"mode":"default",
"coverageTreshold":70
},
"npmdocker":{
}
}

View File

@ -1,6 +1,6 @@
{
"name": "smartfile",
"version": "4.0.12",
"version": "4.0.13",
"description": "offers smart ways to work with files in nodejs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@ -26,9 +26,9 @@
},
"homepage": "https://gitlab.com/pushrocks/smartfile",
"dependencies": {
"@types/fs-extra": "^0.0.28",
"@types/glob": "^5.0.29",
"@types/q": "^0.0.27",
"@types/fs-extra": "0.x.x",
"@types/glob": "5.x.x",
"@types/q": "0.x.x",
"beautylog": "^5.0.14",
"fs-extra": "^0.30.0",
"glob": "^7.0.5",

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
import "typings-test";
import * as smartfile from "../dist/index";
let beautylog = require("beautylog");
import beautylog = require("beautylog");
let gulp = require("gulp");
let gFunction = require("gulp-function");
import path = require("path");