itemsholdr
Advanced tools
Comparing version 0.4.0 to 0.4.2
@@ -10,3 +10,3 @@ const gulp = require("gulp"); | ||
return gulp | ||
.src("src/*.ts") | ||
.src(["src/**/*.ts", "!src/**/*.d.ts"]) | ||
.pipe(tslint()) | ||
@@ -33,6 +33,12 @@ .pipe(tslint.report("verbose")); | ||
gulp.task("dist", function() { | ||
const tsResult = gulp | ||
.src("src/**/*.ts") | ||
.pipe(ts()); | ||
const tsProject = ts.createProject( | ||
"tsconfig.json", | ||
{ | ||
outFile: "dist/ItemsHoldr.js" | ||
}); | ||
const tsResult = tsProject | ||
.src() | ||
.pipe(ts(tsProject)); | ||
return merge([ | ||
@@ -39,0 +45,0 @@ tsResult.dts.pipe(gulp.dest("dist")), |
{ | ||
"name": "itemsholdr", | ||
"description": "A cache-based wrapper around localStorage.", | ||
"version": "0.4.0", | ||
"version": "0.4.2", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Josh Goldberg", |
@@ -6,2 +6,3 @@ { | ||
"noImplicitAny": true, | ||
"declaration": true, | ||
"outDir": "dist" | ||
@@ -8,0 +9,0 @@ }, |
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
132516
25
3447