Skip to content

Commit

Permalink
fix: Fix missing polyfill in generated JS
Browse files Browse the repository at this point in the history
  • Loading branch information
rubyboy committed Jul 11, 2016
1 parent fe0309c commit ca0bddc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var tsc = require('gulp-typescript');
var paths = {
dist: './dist',
sourceFiles: ['./src/*'],
toDelete: ['./dist/index.ts','./dist/materialize-directive.ts','./dist/src','./dist/app','./dist/test'],
toDelete: ['./dist/index.ts','./dist/custom-event-polyfill.ts','./dist/materialize-directive.ts','./dist/src','./dist/app','./dist/test'],
distSourcesFiles: ['./dist/src/*']
};

Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"files": [
"src/materialize-directive.ts",
"src/custom-event-polyfill.ts",
"src/index.ts",
"app/main.ts",
"node_modules/typescript/lib/lib.es6.d.ts"
Expand Down

0 comments on commit ca0bddc

Please sign in to comment.