Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 0d667e2

Browse files
committed
switch minified source naming
1 parent 16cf20c commit 0d667e2

9 files changed

+5402
-5402
lines changed

Gruntfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ module.exports = function (grunt) {
2727
'dist/<%= pkg.name %>.js',
2828
'src/polyfill-wrapper-end.js'
2929
],
30-
dest: 'dist/<%= pkg.name %>.js'
30+
dest: 'dist/<%= pkg.name %>.src.js'
3131
},
3232
polyfillOnly: {
3333
src: [
3434
'src/polyfill-wrapper-start.js',
35-
'dist/<%= pkg.name %>.js',
35+
'dist/<%= pkg.name %>.src.js',
3636
'src/polyfill-wrapper-end.js'
3737
],
38-
dest: 'dist/<%= pkg.name %>-sans-promises.js'
38+
dest: 'dist/<%= pkg.name %>-sans-promises.src.js'
3939
}
4040
},
4141
esnext: {
@@ -75,12 +75,12 @@ module.exports = function (grunt) {
7575
options: {
7676
banner: '<%= meta.banner %>\n'
7777
},
78-
src: 'dist/<%= pkg.name %>.js',
79-
dest: 'dist/<%= pkg.name %>.min.js'
78+
src: 'dist/<%= pkg.name %>.src.js',
79+
dest: 'dist/<%= pkg.name %>.js'
8080
},
8181
polyfillOnly: {
82-
src: 'dist/<%= pkg.name %>-sans-promises.js',
83-
dest: 'dist/<%= pkg.name %>-sans-promises.min.js'
82+
src: 'dist/<%= pkg.name %>-sans-promises.src.js',
83+
dest: 'dist/<%= pkg.name %>-sans-promises.js'
8484
}
8585
}
8686
});

0 commit comments

Comments
 (0)