Skip to content

Commit 85ecdcc

Browse files
authored
Typings fix (#108)
1 parent 6c29b10 commit 85ecdcc

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

gulpfile.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ var buffer = require('vinyl-buffer');
2323
var source = require('vinyl-source-stream');
2424

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

2928
gulp.task('lib-concat', function() {
@@ -44,8 +43,6 @@ gulp.task('lib-concat', function() {
4443
.pipe(uglify())
4544
.pipe(rename({extname: '.min.js'}))
4645
.pipe(sourcemaps.write('maps'))
47-
.pipe(gulp.dest(DEST))
48-
.pipe(gulp.src(TYPINGS_FILE))
4946
.pipe(gulp.dest(DEST));
5047
});
5148

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"url": "https://github.com/GoogleCloudPlatform/stackdriver-errors-js"
1919
},
2020
"files": [
21-
"dist/"
21+
"dist/",
22+
"stackdriver-errors.d.ts"
2223
],
2324
"keywords": [
2425
"stackdriver",

0 commit comments

Comments
 (0)