aurelia-progress
Advanced tools
Comparing version 0.2.1 to 0.3.0
"use strict"; | ||
var progress_indicator_1 = require("./progress-indicator"); | ||
exports.ProgressIndicator = progress_indicator_1.ProgressIndicator; | ||
//# sourceMappingURL=index.js.map |
@@ -8,1 +8,3 @@ "use strict"; | ||
exports.ProgressIndicator = ProgressIndicator; | ||
//# sourceMappingURL=progress-indicator.js.map |
@@ -9,6 +9,6 @@ import gulp from "gulp"; | ||
import typescript from "typescript"; | ||
import typings from "gulp-typings"; | ||
import gts from "gulp-typescript"; | ||
import sass from "gulp-sass"; | ||
import merge from "merge2"; | ||
import sourcemaps from "gulp-sourcemaps"; | ||
import tsconfig from "./tsconfig.json"; | ||
@@ -20,3 +20,2 @@ import pkconfig from "./package.json"; | ||
}; | ||
const typingsConfig = "src/typings.json"; | ||
const typescriptSources = [ tsconfig.compilerOptions.rootDir + "/**/*.ts" ]; | ||
@@ -32,7 +31,6 @@ const htmlSources = [ tsconfig.compilerOptions.rootDir + "/**/*.html" ]; | ||
gulp.task("clean", done => gulp.src(clean).pipe(paths(del))); | ||
gulp.task("typings", done => gulp.src(typingsConfig).pipe(typings())); | ||
gulp.task("build-typescript", [ "typings" ], done => { | ||
let stream = gulp.src(typescriptSources).pipe(tsc); | ||
gulp.task("build-typescript", done => { | ||
let stream = gulp.src(typescriptSources).pipe(sourcemaps.init()).pipe(tsc); | ||
return merge([ | ||
stream.js.pipe(gulp.dest(output)), | ||
stream.js.pipe(sourcemaps.write(".", { mapSources: sourcePath => "../" + sourcePath })).pipe(gulp.dest(output)), | ||
stream.dts.pipe(gulp.dest(output)) | ||
@@ -39,0 +37,0 @@ ]); |
{ | ||
"name": "aurelia-progress", | ||
"version": "0.2.1", | ||
"version": "0.3.0", | ||
"description": "A plugin for Aurelia based projects.", | ||
@@ -26,2 +26,3 @@ "keywords": [ | ||
"devDependencies": { | ||
"@types/jasmine": "^2.5.38", | ||
"babel-preset-es2015": "^6.18.0", | ||
@@ -32,5 +33,5 @@ "babel-register": "^6.18.0", | ||
"gulp-jasmine": "^2.4.2", | ||
"gulp-sass": "^2.3.2", | ||
"gulp-sass": "^3.0.0", | ||
"gulp-sourcemaps": "^1.9.1", | ||
"gulp-typescript": "^3.1.3", | ||
"gulp-typings": "^2.0.4", | ||
"jasmine": "^2.5.2", | ||
@@ -40,5 +41,5 @@ "jasmine-reporters": "^2.2.0", | ||
"run-sequence": "^1.2.2", | ||
"typescript": "^2.1.1", | ||
"typescript": "^2.1.4", | ||
"vinyl-paths": "^2.1.0" | ||
} | ||
} |
@@ -1,1 +0,1 @@ | ||
export { ProgressIndicator} from "./progress-indicator"; | ||
export { ProgressIndicator } from "./progress-indicator"; |
@@ -6,4 +6,6 @@ { | ||
"target": "es5", | ||
"lib": ["es2015", "dom"], | ||
"lib": [ "es2017", "dom" ], | ||
"types": [ "jasmine" ], | ||
"declaration": true, | ||
"allowSyntheticDefaultImports": true, | ||
"experimentalDecorators": true, | ||
@@ -10,0 +12,0 @@ "emitDecoratorMetadata": true |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12693
16
86
15