diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-08-16 19:20:18 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-08-16 19:20:18 +0200 |
commit | d10c42776a6b0deb1f366995cdb1666807106a1e (patch) | |
tree | 9323a37876d48b868255fee2699fd0c33cad702a /gulpfile.js | |
parent | 67dc8d30c0b9b84b5d1f37eb680729e0b7ac32f6 (diff) |
use packaged type declarations
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gulpfile.js b/gulpfile.js index 0a2b2c268..1ebeb2564 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -52,11 +52,6 @@ const paths = { "src/**/*.{ts,tsx,js}", "!src/**/*-test*.ts", ], - decl: [ - "decl/jed.d.ts", - "decl/chrome/chrome.d.ts", - "decl/urijs.d.ts", - ], test: [ "src/**/*-test*.ts", ], @@ -78,7 +73,6 @@ const paths = { "Makefile", "README", "configure", - "decl/**/*.d.ts", "gulpfile.js", "manifest.json", "package.json", @@ -223,7 +217,6 @@ function srcdist() { // We can't just concat patterns due to exclude patterns const files = concatStreams( gulp.src(paths.ts.src, opts), - gulp.src(paths.ts.decl, opts), gulp.src(paths.ts.test, opts), gulp.src(paths.dist, opts), gulp.src(paths.extra, opts)); @@ -341,8 +334,7 @@ function tsconfig() { let opts = {base: "."}; const files = concatStreams( vfs.src(paths.ts.src, opts), - vfs.src(paths.ts.test, opts), - vfs.src(paths.ts.decl, opts)); + vfs.src(paths.ts.test, opts)); return files.pipe(genTSConfig(tsBaseArgs)) .pipe(gulp.dest(".")); } |