Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
fix(build): fixes old IE issue (#200)
Browse files Browse the repository at this point in the history
Avoid leaving `default` unquoted, which breaks old IE
  • Loading branch information
jnewman-sfdc authored Nov 22, 2016
1 parent aeae4d0 commit 58d0540
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
lib/**
dist/**
node_modules/**
test/karma-intellij.config.js
1 change: 0 additions & 1 deletion .jscsrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"preset": "google",
"esnext": true,
"maximumLineLength": null,
"validateQuoteMarks": { "mark": "'", "escape": true }
}
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function build(config) {
.pipe(stripDebug())
.pipe(rename({basename: basename, extname: '.js'}))
.pipe(gulp.dest(DIST))
.pipe(uglify())
.pipe(uglify({compress: {properties: false}, output: {'quote_keys': true}}))
.pipe(header(BANNER))
.pipe(rename({basename: basename, extname: '.min.js'}))
.pipe(gulp.dest(DIST))
Expand Down

0 comments on commit 58d0540

Please sign in to comment.