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

Commit 7d784c9

Browse files
committed
include unminified distribution version
1 parent c58f438 commit 7d784c9

File tree

6 files changed

+2935
-21
lines changed

6 files changed

+2935
-21
lines changed

Gruntfile.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ module.exports = function (grunt) {
2828
'lib/loader.js',
2929
'lib/system.js'
3030
],
31-
dest: 'tmp/<%= pkg.name %>.js'
31+
dest: 'dist/<%= pkg.name %>.js'
3232
},
3333
polyfillOnly: {
3434
src: [
3535
'lib/module.js',
3636
'lib/loader.js',
3737
'lib/system.js'
3838
],
39-
dest: 'tmp/<%= pkg.name %>-sans-promises.js'
39+
dest: 'dist/<%= pkg.name %>-sans-promises.js'
4040
}
4141
},
4242
uglify: {
@@ -51,12 +51,12 @@ module.exports = function (grunt) {
5151
banner: '<%= meta.banner %>\n'
5252
+ '/*\n * ES6 Promises shim from when.js, Copyright (c) 2010-2014 Brian Cavalier, John Hann, MIT License\n */\n'
5353
},
54-
src: 'tmp/<%= pkg.name %>.js',
55-
dest: 'dist/<%= pkg.name %>.js'
54+
src: 'dist/<%= pkg.name %>.js',
55+
dest: 'dist/<%= pkg.name %>.min.js'
5656
},
5757
polyfillOnly: {
58-
src: 'tmp/<%= pkg.name %>-sans-promises.js',
59-
dest: 'dist/<%= pkg.name %>-sans-promises.js'
58+
src: 'dist/<%= pkg.name %>-sans-promises.js',
59+
dest: 'dist/<%= pkg.name %>-sans-promises.min.js'
6060
}
6161
}
6262
});

0 commit comments

Comments
 (0)