angular2-pipes
Advanced tools
Comparing version 0.4.14 to 0.4.15
@@ -5,5 +5,11 @@ const gulp = require('gulp'); | ||
const merge = require('merge2'); | ||
const clean = require('gulp-clean'); | ||
const tsProject = tsc.createProject('tsconfig.json'); | ||
gulp.task('release', () => { | ||
gulp.task('clean', () => { | ||
const tsResult = gulp.src(['./src/**/*.d.ts', './src/**/*.js', './src/**/*.js', './src/**/*.js.map']); | ||
return tsResult.pipe(clean()); | ||
}); | ||
gulp.task('release', ['clean'], () => { | ||
const tsResult = gulp.src(['./src/**/*.ts', '!./src/**/*.spec.ts']) | ||
@@ -16,6 +22,6 @@ .pipe(sourcemaps.init()) | ||
.pipe(sourcemaps.write('.')) | ||
.pipe(gulp.dest('./bin')), | ||
.pipe(gulp.dest('./src')), | ||
tsResult.dts | ||
.pipe(gulp.dest('./bin')) | ||
.pipe(gulp.dest('./src')) | ||
]); | ||
}); |
@@ -1,1 +0,1 @@ | ||
export * from './bin/app/pipes.module'; | ||
export * from './src/app'; |
{ | ||
"name": "angular2-pipes", | ||
"version": "0.4.14", | ||
"version": "0.4.15", | ||
"author": "Dan Revah", | ||
@@ -11,6 +11,5 @@ "description": "Useful angular2 pipes", | ||
"lint": "tslint \"src/**/*.ts\"", | ||
"test": "ng test", | ||
"pree2e": "webdriver-manager update", | ||
"e2e": "protractor" | ||
"test": "ng test" | ||
}, | ||
"main": "src/app/index.js", | ||
"keywords": [ | ||
@@ -37,2 +36,3 @@ "ng2", | ||
"@angular/compiler": "^2.1.0", | ||
"@angular/compiler-cli": "^2.1.0", | ||
"@angular/core": "^2.1.0", | ||
@@ -44,7 +44,2 @@ "@angular/forms": "^2.1.0", | ||
"@angular/router": "^3.1.0", | ||
"core-js": "^2.4.1", | ||
"rxjs": "5.0.0-beta.12", | ||
"ts-helpers": "^1.1.1", | ||
"zone.js": "^0.6.23", | ||
"@angular/compiler-cli": "^2.1.0", | ||
"@types/jasmine": "^2.2.30", | ||
@@ -54,2 +49,4 @@ "@types/node": "^6.0.42", | ||
"codelyzer": "~1.0.0-beta.3", | ||
"core-js": "^2.4.1", | ||
"gulp-clean": "^0.3.2", | ||
"jasmine-core": "2.4.1", | ||
@@ -62,8 +59,10 @@ "jasmine-spec-reporter": "2.5.0", | ||
"karma-remap-istanbul": "^0.2.1", | ||
"protractor": "4.0.9", | ||
"rxjs": "5.0.0-beta.12", | ||
"ts-helpers": "^1.1.1", | ||
"ts-node": "1.2.1", | ||
"tslint": "3.13.0", | ||
"typescript": "~2.0.3", | ||
"webdriver-manager": "10.2.5" | ||
"webdriver-manager": "10.2.5", | ||
"zone.js": "^0.6.23" | ||
} | ||
} |
@@ -9,3 +9,2 @@ { | ||
"moduleResolution": "node", | ||
"outDir": "./bin", | ||
"target": "es5", | ||
@@ -12,0 +11,0 @@ "typeRoots": [ |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
238481
314
4025
1