We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c29b10 commit 85ecdccCopy full SHA for 85ecdcc
2 files changed
gulpfile.js
@@ -23,7 +23,6 @@ var buffer = require('vinyl-buffer');
23
var source = require('vinyl-source-stream');
24
25
var SRC_FILE = 'stackdriver-errors.js';
26
-var TYPINGS_FILE = 'stackdriver-errors.d.ts';
27
var DEST = 'dist/';
28
29
gulp.task('lib-concat', function() {
@@ -44,8 +43,6 @@ gulp.task('lib-concat', function() {
44
43
.pipe(uglify())
45
.pipe(rename({extname: '.min.js'}))
46
.pipe(sourcemaps.write('maps'))
47
- .pipe(gulp.dest(DEST))
48
- .pipe(gulp.src(TYPINGS_FILE))
49
.pipe(gulp.dest(DEST));
50
});
51
package.json
@@ -18,7 +18,8 @@
18
"url": "https://github.com/GoogleCloudPlatform/stackdriver-errors-js"
19
},
20
"files": [
21
- "dist/"
+ "dist/",
22
+ "stackdriver-errors.d.ts"
],
"keywords": [
"stackdriver",
0 commit comments