Skip to content

Commit cbb06a4

Browse files
Carson BruceAwk34
Carson Bruce
authored andcommitted
feat(app): additional app generator option for ES6 preprocessing using babel
Building on from the ES6 client preprocessor have added karma config and related karma-babel-preprocessor module for ES6 client tests for complete ES6 client support Related issue: Any plans for es6 and traceur support? #684
1 parent 7a3b6d4 commit cbb06a4

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

app/templates/_package.json

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"grunt-contrib-coffee": "^0.10.1",<% } %><% if(filters.jade) { %>
4747
"grunt-contrib-jade": "^0.11.0",<% } %><% if(filters.less) { %>
4848
"grunt-contrib-less": "^0.11.0",<% } %><% if(filters.babel) { %>
49+
"karma-babel-preprocessor": "^5.2.1",
4950
"grunt-babel": "~5.0.0",<% } %>
5051
"grunt-google-cdn": "~0.4.0",
5152
"grunt-newer": "~0.7.0",

app/templates/karma.conf.js

+16-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ module.exports = function(config) {
3636

3737
preprocessors: {
3838
'**/*.jade': 'ng-jade2js',
39-
'**/*.html': 'html2js',
39+
'**/*.html': 'html2js',<% if(filters.babel) { %>
40+
'client/app/**/*.js': 'babel',<% } %>
4041
'**/*.coffee': 'coffee',
4142
},
4243

@@ -48,6 +49,20 @@ module.exports = function(config) {
4849
stripPrefix: 'client/'
4950
},
5051

52+
<% if(filters.babel) { %>
53+
babelPreprocessor: {
54+
options: {
55+
sourceMap: 'inline'
56+
},
57+
filename: function (file) {
58+
return file.originalPath.replace(/\.js$/, '.es5.js');
59+
},
60+
sourceFileName: function (file) {
61+
return file.originalPath;
62+
}
63+
},
64+
<% } %>
65+
5166
// list of files / patterns to exclude
5267
exclude: [],
5368

test/fixtures/bower.json

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"angular": ">=1.2.*",
66
"json3": "~3.3.1",
77
"es5-shim": "~3.0.1",
8-
"jquery": "~1.11.0",
98
"bootstrap-sass-official": "~3.1.1",
109
"bootstrap": "~3.1.1",
1110
"angular-resource": ">=1.2.*",

test/fixtures/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"main": "server/app.js",
55
"dependencies": {
6-
"express": "~4.0.0",
6+
"express": "~4.9.0",
77
"morgan": "~1.0.0",
88
"body-parser": "~1.5.0",
99
"method-override": "~1.0.0",
@@ -46,6 +46,8 @@
4646
"grunt-contrib-coffee": "^0.10.1",
4747
"grunt-contrib-jade": "^0.11.0",
4848
"grunt-contrib-less": "^0.11.0",
49+
"karma-babel-preprocessor": "^5.2.1",
50+
"grunt-babel": "~5.0.0",
4951
"grunt-google-cdn": "~0.4.0",
5052
"grunt-newer": "~0.7.0",
5153
"grunt-ng-annotate": "^0.2.3",

0 commit comments

Comments
 (0)