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

Commit dc38540

Browse files
committed
rename transpiling build to dev
1 parent b4c02ba commit dc38540

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Gruntfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = function (grunt) {
2020
concat: {
2121
dist: {
2222
files: {
23-
'dist/<%= pkg.name %>-prod.src.js': [
23+
'dist/<%= pkg.name %>.src.js': [
2424
'node_modules/when/es6-shim/Promise.js',
2525
'src/wrapper-start.js',
2626
'src/loader.js',
@@ -29,7 +29,7 @@ module.exports = function (grunt) {
2929
'src/system.js',
3030
'src/wrapper-end.js'
3131
],
32-
'dist/<%= pkg.name %>.src.js': [
32+
'dist/<%= pkg.name %>-dev.src.js': [
3333
'node_modules/when/es6-shim/Promise.js',
3434
'src/wrapper-start.js',
3535
'src/loader.js',
@@ -58,12 +58,12 @@ module.exports = function (grunt) {
5858
src: 'dist/<%= pkg.name %>.src.js',
5959
dest: 'dist/<%= pkg.name %>.js'
6060
},
61-
prodDist: {
61+
devDist: {
6262
options: {
6363
banner: '<%= meta.banner %>\n'
6464
},
65-
src: 'dist/<%= pkg.name %>-prod.src.js',
66-
dest: 'dist/<%= pkg.name %>-prod.js'
65+
src: 'dist/<%= pkg.name %>-dev.src.js',
66+
dest: 'dist/<%= pkg.name %>-dev.js'
6767
}
6868
}
6969
});

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
if (typeof Promise === 'undefined')
22
require('when/es6-shim/Promise');
33

4-
var System = require('./dist/es6-module-loader.src');
4+
var System = require('./dist/es6-module-loader-dev.src');
55

66
try {
77
System.paths.traceur = 'file:' + require.resolve('traceur/bin/traceur.js');

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = function(config) {
4040
[!options.ie8 ? (!options['babel'] ? 'node_modules/traceur/bin/traceur.js' : 'node_modules/babel-core/browser.js') : ''],
4141

4242
[options.polyfill ? 'node_modules/when/es6-shim/Promise' : ''],
43-
'dist/es6-module-loader.src.js',
43+
'dist/es6-module-loader-dev.src.js',
4444

4545
'test/_browser.js',
4646
'test/browser-script-type-module.js',

test/worker/worker-babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
importScripts("../../node_modules/when/es6-shim/Promise.js",
2-
"../../dist/es6-module-loader.src.js"
2+
"../../dist/es6-module-loader-dev.src.js"
33
);
44

55
System.transpiler = 'babel';

test/worker/worker-traceur.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
importScripts("../../node_modules/when/es6-shim/Promise.js",
2-
"../../dist/es6-module-loader.src.js");
2+
"../../dist/es6-module-loader-dev.src.js");
33
System.paths['traceur'] = '../../node_modules/traceur/bin/traceur.js';
44
System['import']('es6.js').then(function(m) {
55
postMessage(m.p);

0 commit comments

Comments
 (0)