mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
add babel task to gruntfile
This commit is contained in:
parent
b058b4fa65
commit
f932e1d9e6
2 changed files with 102 additions and 18 deletions
|
|
@ -44,6 +44,30 @@ module.exports = function(grunt) {
|
|||
// Project settings
|
||||
yeoman: appConfig,
|
||||
|
||||
babel: {
|
||||
options: {
|
||||
sourceMap: true,
|
||||
presets: ['es2015'],
|
||||
plugins: ['transform-object-rest-spread']
|
||||
},
|
||||
dev: {
|
||||
files: [{
|
||||
expand: true,
|
||||
cwd: './src/',
|
||||
src: ['**/*.js'],
|
||||
dest: '.tmp',
|
||||
}]
|
||||
},
|
||||
dist: {
|
||||
files: [{
|
||||
expand: true,
|
||||
cwd: '.tmp/concat/scripts',
|
||||
src: ['scripts.js'],
|
||||
dest: '.tmp/concat/scripts',
|
||||
}]
|
||||
}
|
||||
},
|
||||
|
||||
// use ngAnnotate instead og ngMin
|
||||
ngAnnotate: {
|
||||
dist: {
|
||||
|
|
@ -138,7 +162,7 @@ module.exports = function(grunt) {
|
|||
'<%= yeoman.app %>/app/**/*.js',
|
||||
'<%= yeoman.app %>/components/**/*.js'
|
||||
],
|
||||
tasks: ['newer:eslint:all', 'newer:jscs:all'],
|
||||
tasks: ['newer:eslint:all', 'newer:jscs:all', 'newer:babel:dev'],
|
||||
options: {
|
||||
livereload: '<%= connect.options.livereload %>'
|
||||
}
|
||||
|
|
@ -147,11 +171,16 @@ module.exports = function(grunt) {
|
|||
files: [
|
||||
'<%= yeoman.app %>/**/*.html'
|
||||
],
|
||||
tasks: ['newer:htmlhint']
|
||||
tasks: ['newer:htmlhint', 'newer:copy:dev']
|
||||
},
|
||||
jsTest: {
|
||||
files: ['test/spec/{,*/}*.js'],
|
||||
tasks: ['newer:eslint:test', 'newer:jscs:test', 'karma']
|
||||
tasks: [
|
||||
'newer:eslint:test',
|
||||
'newer:jscs:test',
|
||||
'newer:babel:dev',
|
||||
'karma'
|
||||
]
|
||||
},
|
||||
styles: {
|
||||
files: [
|
||||
|
|
@ -185,11 +214,12 @@ module.exports = function(grunt) {
|
|||
port: 9000,
|
||||
// Change this to '0.0.0.0' to access the server from outside.
|
||||
hostname: 'localhost',
|
||||
livereload: 35729
|
||||
livereload: 35729,
|
||||
base: '.tmp',
|
||||
},
|
||||
livereload: {
|
||||
options: {
|
||||
open: true,
|
||||
open: false,
|
||||
middleware: function(connect) {
|
||||
return [
|
||||
connect.static('.tmp'),
|
||||
|
|
@ -197,7 +227,6 @@ module.exports = function(grunt) {
|
|||
'/bower_components',
|
||||
connect.static('./bower_components')
|
||||
),
|
||||
connect.static(appConfig.app)
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
@ -220,7 +249,7 @@ module.exports = function(grunt) {
|
|||
},
|
||||
dist: {
|
||||
options: {
|
||||
open: true,
|
||||
open: false,
|
||||
base: '<%= yeoman.dist %>'
|
||||
}
|
||||
}
|
||||
|
|
@ -382,9 +411,6 @@ module.exports = function(grunt) {
|
|||
}
|
||||
}
|
||||
},
|
||||
// concat: {
|
||||
// dist: {}
|
||||
// },
|
||||
|
||||
svgmin: {
|
||||
dist: {
|
||||
|
|
@ -421,6 +447,60 @@ module.exports = function(grunt) {
|
|||
|
||||
// Copies remaining files to places other tasks can use
|
||||
copy: {
|
||||
dev: {
|
||||
files: [{
|
||||
expand: true,
|
||||
dot: true,
|
||||
cwd: '<%= yeoman.app %>',
|
||||
dest: '.tmp',
|
||||
src: [
|
||||
'*.{ico,png,txt}',
|
||||
'.htaccess',
|
||||
'*.html',
|
||||
'**/*.css',
|
||||
'assets/styles/**/*',
|
||||
'assets/images/**/*',
|
||||
'WEB-INF/*'
|
||||
]
|
||||
}, {
|
||||
// copy fonts
|
||||
expand: true,
|
||||
cwd: '<%= yeoman.app %>',
|
||||
dest: '.tmp',
|
||||
src: ['fonts/**/*.{eot,svg,ttf,woff}']
|
||||
}, {
|
||||
expand: true,
|
||||
cwd: '<%= yeoman.app %>',
|
||||
dest: '.tmp',
|
||||
src: ['app/**/*.html', 'components/**/*.html']
|
||||
}, {
|
||||
expand: true,
|
||||
cwd: 'bower_components/datatables/media/images',
|
||||
src: '{,*/}*.{png,jpg,jpeg,gif}',
|
||||
dest: '.tmp/images'
|
||||
}, {
|
||||
expand: true,
|
||||
cwd: '.tmp/images',
|
||||
dest: '.tmp/images',
|
||||
src: ['generated/*']
|
||||
}, {
|
||||
expand: true,
|
||||
cwd: 'bower_components/bootstrap/dist',
|
||||
src: 'fonts/*',
|
||||
dest: '.tmp'
|
||||
}, {
|
||||
expand: true,
|
||||
cwd: 'bower_components/jquery-ui/themes/base/images',
|
||||
src: '{,*/}*.{png,jpg,jpeg,gif}',
|
||||
dest: '.tmp/styles/images'
|
||||
}, {
|
||||
expand: true,
|
||||
cwd: 'bower_components/MathJax',
|
||||
src: [
|
||||
'extensions/**', 'jax/**', 'fonts/**'],
|
||||
dest: '.tmp'
|
||||
}]
|
||||
},
|
||||
dist: {
|
||||
files: [{
|
||||
expand: true,
|
||||
|
|
@ -486,10 +566,10 @@ module.exports = function(grunt) {
|
|||
// Run some tasks in parallel to speed up the build process
|
||||
concurrent: {
|
||||
server: [
|
||||
'copy:styles'
|
||||
'copy:dev'
|
||||
],
|
||||
test: [
|
||||
'copy:styles'
|
||||
'copy:dev',
|
||||
],
|
||||
dist: [
|
||||
'copy:styles',
|
||||
|
|
@ -516,6 +596,7 @@ module.exports = function(grunt) {
|
|||
'wiredep',
|
||||
'concurrent:server',
|
||||
'postcss',
|
||||
'babel:dev',
|
||||
'connect:livereload',
|
||||
'watch'
|
||||
]);
|
||||
|
|
@ -528,9 +609,11 @@ module.exports = function(grunt) {
|
|||
|
||||
grunt.registerTask('test', [
|
||||
'clean:server',
|
||||
'babel',
|
||||
'wiredep',
|
||||
'concurrent:test',
|
||||
'postcss',
|
||||
'babel:dev',
|
||||
'connect:test',
|
||||
'karma'
|
||||
]);
|
||||
|
|
@ -546,6 +629,7 @@ module.exports = function(grunt) {
|
|||
'concurrent:dist',
|
||||
'postcss',
|
||||
'concat',
|
||||
'babel:dist',
|
||||
'ngAnnotate',
|
||||
'copy:dist',
|
||||
'cssmin',
|
||||
|
|
|
|||
|
|
@ -68,17 +68,17 @@ module.exports = function(config) {
|
|||
'bower_components/MathJax/MathJax.js',
|
||||
'bower_components/angular-mocks/angular-mocks.js',
|
||||
// endbower
|
||||
'src/app/app.js',
|
||||
'src/app/app.controller.js',
|
||||
'src/app/tabledata/transformation.js',
|
||||
'src/app/**/*.js',
|
||||
'src/components/**/*.js',
|
||||
'.tmp/app/app.js',
|
||||
'.tmp/app/app.controller.js',
|
||||
'.tmp/app/tabledata/transformation.js',
|
||||
'.tmp/app/**/*.js',
|
||||
'.tmp/components/**/*.js',
|
||||
'test/spec/**/*.js'
|
||||
],
|
||||
|
||||
// list of files / patterns to exclude
|
||||
exclude: [
|
||||
'src/app/visualization/builtins/*.js'
|
||||
'.tmp/app/visualization/builtins/*.js'
|
||||
],
|
||||
|
||||
// web server port
|
||||
|
|
|
|||
Loading…
Reference in a new issue