Skip to content

Commit

Permalink
Typings fix (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjon authored Oct 14, 2021
1 parent 6c29b10 commit 85ecdcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ var buffer = require('vinyl-buffer');
var source = require('vinyl-source-stream');

var SRC_FILE = 'stackdriver-errors.js';
var TYPINGS_FILE = 'stackdriver-errors.d.ts';
var DEST = 'dist/';

gulp.task('lib-concat', function() {
Expand All @@ -44,8 +43,6 @@ gulp.task('lib-concat', function() {
.pipe(uglify())
.pipe(rename({extname: '.min.js'}))
.pipe(sourcemaps.write('maps'))
.pipe(gulp.dest(DEST))
.pipe(gulp.src(TYPINGS_FILE))
.pipe(gulp.dest(DEST));
});

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"url": "https://github.com/GoogleCloudPlatform/stackdriver-errors-js"
},
"files": [
"dist/"
"dist/",
"stackdriver-errors.d.ts"
],
"keywords": [
"stackdriver",
Expand Down

0 comments on commit 85ecdcc

Please sign in to comment.