woocommerce/Gruntfile.js

295 lines
7.7 KiB
JavaScript
Raw Normal View History

2014-02-02 19:20:52 +00:00
/* jshint node:true */
2014-08-01 12:53:31 +00:00
module.exports = function( grunt ) {
2014-02-02 19:20:52 +00:00
'use strict';
2014-01-30 16:11:02 +00:00
2014-02-02 19:22:05 +00:00
grunt.initConfig({
2014-10-23 21:42:07 +00:00
// Setting folder templates.
dirs: {
css: 'assets/css',
fonts: 'assets/fonts',
images: 'assets/images',
js: 'assets/js'
},
// JavaScript linting with JSHint.
2014-08-04 14:12:50 +00:00
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'<%= dirs.js %>/admin/*.js',
'!<%= dirs.js %>/admin/*.min.js',
'<%= dirs.js %>/frontend/*.js',
'!<%= dirs.js %>/frontend/*.min.js',
'includes/gateways/simplify-commerce/assets/js/*.js',
'!includes/gateways/simplify-commerce/assets/js/*.min.js'
2014-08-04 14:12:50 +00:00
]
},
2016-08-08 19:32:39 +00:00
// Sass linting with Stylelint.
stylelint: {
options: {
stylelintrc: '.stylelintrc'
},
all: [
2016-08-10 13:15:58 +00:00
'<%= dirs.css %>/*.scss',
'!<%= dirs.css %>/select2.scss'
2016-08-08 19:32:39 +00:00
]
},
// Minify .js files.
uglify: {
options: {
2016-06-07 14:18:33 +00:00
// Preserve comments that start with a bang.
2016-03-12 08:14:37 +00:00
preserveComments: /^!/
},
admin: {
files: [{
expand: true,
cwd: '<%= dirs.js %>/admin/',
src: [
'*.js',
'!*.min.js'
],
dest: '<%= dirs.js %>/admin/',
ext: '.min.js'
}]
},
vendor: {
files: {
'<%= dirs.js %>/accounting/accounting.min.js': ['<%= dirs.js %>/accounting/accounting.js'],
2015-02-02 16:11:05 +00:00
'<%= dirs.js %>/jquery-blockui/jquery.blockUI.min.js': ['<%= dirs.js %>/jquery-blockui/jquery.blockUI.js'],
'<%= dirs.js %>/jquery-cookie/jquery.cookie.min.js': ['<%= dirs.js %>/jquery-cookie/jquery.cookie.js'],
'<%= dirs.js %>/jquery-flot/jquery.flot.min.js': ['<%= dirs.js %>/jquery-flot/jquery.flot.js'],
'<%= dirs.js %>/jquery-flot/jquery.flot.pie.min.js': ['<%= dirs.js %>/jquery-flot/jquery.flot.pie.js'],
'<%= dirs.js %>/jquery-flot/jquery.flot.resize.min.js': ['<%= dirs.js %>/jquery-flot/jquery.flot.resize.js'],
'<%= dirs.js %>/jquery-flot/jquery.flot.stack.min.js': ['<%= dirs.js %>/jquery-flot/jquery.flot.stack.js'],
'<%= dirs.js %>/jquery-flot/jquery.flot.time.min.js': ['<%= dirs.js %>/jquery-flot/jquery.flot.time.js'],
'<%= dirs.js %>/jquery-payment/jquery.payment.min.js': ['<%= dirs.js %>/jquery-payment/jquery.payment.js'],
2015-06-08 21:31:19 +00:00
'<%= dirs.js %>/jquery-qrcode/jquery.qrcode.min.js': ['<%= dirs.js %>/jquery-qrcode/jquery.qrcode.js'],
2015-07-14 14:18:03 +00:00
'<%= dirs.js %>/jquery-serializejson/jquery.serializejson.min.js': ['<%= dirs.js %>/jquery-serializejson/jquery.serializejson.js'],
'<%= dirs.js %>/jquery-tiptip/jquery.tipTip.min.js': ['<%= dirs.js %>/jquery-tiptip/jquery.tipTip.js'],
'<%= dirs.js %>/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js': ['<%= dirs.js %>/jquery-ui-touch-punch/jquery-ui-touch-punch.js'],
'<%= dirs.js %>/prettyPhoto/jquery.prettyPhoto.init.min.js': ['<%= dirs.js %>/prettyPhoto/jquery.prettyPhoto.init.js'],
'<%= dirs.js %>/prettyPhoto/jquery.prettyPhoto.min.js': ['<%= dirs.js %>/prettyPhoto/jquery.prettyPhoto.js'],
'<%= dirs.js %>/round/round.min.js': ['<%= dirs.js %>/round/round.js'],
'<%= dirs.js %>/select2/select2.min.js': ['<%= dirs.js %>/select2/select2.js'],
'<%= dirs.js %>/stupidtable/stupidtable.min.js': ['<%= dirs.js %>/stupidtable/stupidtable.js'],
'<%= dirs.js %>/zeroclipboard/jquery.zeroclipboard.min.js': ['<%= dirs.js %>/zeroclipboard/jquery.zeroclipboard.js']
}
},
frontend: {
files: [{
expand: true,
cwd: '<%= dirs.js %>/frontend/',
src: [
'*.js',
'!*.min.js'
],
dest: '<%= dirs.js %>/frontend/',
ext: '.min.js'
}]
},
simplify_commerce: {
files: [{
expand: true,
cwd: 'includes/gateways/simplify-commerce/assets/js/',
src: [
'*.js',
'!*.min.js'
],
dest: 'includes/gateways/simplify-commerce/assets/js/',
ext: '.min.js'
}]
2014-09-22 16:55:53 +00:00
}
},
// Compile all .scss files.
sass: {
compile: {
options: {
2014-10-17 17:21:54 +00:00
sourcemap: 'none',
loadPath: require( 'node-bourbon' ).includePaths
},
2014-09-22 16:55:53 +00:00
files: [{
expand: true,
cwd: '<%= dirs.css %>/',
src: ['*.scss'],
dest: '<%= dirs.css %>/',
ext: '.css'
}]
}
},
2014-08-04 14:12:50 +00:00
// Minify all .css files.
cssmin: {
minify: {
expand: true,
cwd: '<%= dirs.css %>/',
src: ['*.css'],
dest: '<%= dirs.css %>/',
ext: '.css'
}
},
// Watch changes for assets.
2014-02-02 21:33:20 +00:00
watch: {
2014-09-22 16:55:53 +00:00
css: {
files: ['<%= dirs.css %>/*.scss'],
tasks: ['sass', 'cssmin']
2014-02-02 21:33:20 +00:00
},
js: {
files: [
'<%= dirs.js %>/admin/*js',
'<%= dirs.js %>/frontend/*js',
2014-02-19 19:53:00 +00:00
'!<%= dirs.js %>/admin/*.min.js',
'!<%= dirs.js %>/frontend/*.min.js'
2014-02-02 21:33:20 +00:00
],
tasks: ['jshint', 'uglify']
2014-02-02 21:33:20 +00:00
}
},
// Generate POT files.
2014-08-01 12:53:31 +00:00
makepot: {
options: {
type: 'wp-plugin',
domainPath: 'i18n/languages',
potHeaders: {
'report-msgid-bugs-to': 'https://github.com/woocommerce/woocommerce/issues',
2014-08-01 12:53:31 +00:00
'language-team': 'LANGUAGE <EMAIL@ADDRESS>'
}
},
dist: {
2014-08-01 12:53:31 +00:00
options: {
potFilename: 'woocommerce.pot',
exclude: [
2015-01-16 16:06:58 +00:00
'apigen/.*',
'tests/.*',
'tmp/.*'
]
2014-08-01 12:53:31 +00:00
}
}
},
// Check textdomain errors.
2014-08-01 12:53:31 +00:00
checktextdomain: {
options:{
text_domain: 'woocommerce',
keywords: [
'__:1,2d',
'_e:1,2d',
'_x:1,2c,3d',
'esc_html__:1,2d',
'esc_html_e:1,2d',
'esc_html_x:1,2c,3d',
'esc_attr__:1,2d',
'esc_attr_e:1,2d',
'esc_attr_x:1,2c,3d',
'_ex:1,2c,3d',
'_n:1,2,4d',
'_nx:1,2,4c,5d',
'_n_noop:1,2,3d',
'_nx_noop:1,2,3c,4d'
2014-08-01 21:05:30 +00:00
]
2014-08-01 12:53:31 +00:00
},
files: {
src: [
2016-09-13 21:24:01 +00:00
'**/*.php', // Include all files
'!apigen/**', // Exclude apigen/
'!node_modules/**', // Exclude node_modules/
2016-09-13 21:24:01 +00:00
'!tests/**', // Exclude tests/
'!vendor/**', // Exclude vendor/
'!tmp/**' // Exclude tmp/
2014-08-01 12:53:31 +00:00
],
2014-08-01 21:05:30 +00:00
expand: true
}
2014-08-01 12:53:31 +00:00
},
// Exec shell commands.
2014-02-02 19:22:05 +00:00
shell: {
options: {
stdout: true,
stderr: true
},
2014-02-14 14:29:30 +00:00
apigen: {
command: [
2016-06-07 14:18:33 +00:00
'apigen generate -q',
2015-02-23 14:40:16 +00:00
'cd apigen',
'php hook-docs.php'
2014-02-14 14:29:30 +00:00
].join( '&&' )
2014-02-02 19:22:05 +00:00
}
2014-02-10 12:52:41 +00:00
},
// Clean the directory.
2014-02-10 12:52:41 +00:00
clean: {
2014-02-14 15:09:35 +00:00
apigen: {
src: [ 'wc-apidocs' ]
}
2016-09-13 21:24:01 +00:00
},
// PHP Code Sniffer.
phpcs: {
options: {
bin: 'vendor/bin/phpcs',
standard: './phpcs.ruleset.xml'
},
dist: {
src: [
'**/*.php', // Include all files
'!apigen/**', // Exclude apigen/
'!includes/api/legacy/**', // Exclude legacy REST API
'!includes/gateways/simplify-commerce/includes/Simplify/**', // Exclude simplify commerce SDK
'!includes/libraries/**', // Exclude libraries/
'!node_modules/**', // Exclude node_modules/
'!tmp/**', // Exclude tmp/
'!vendor/**' // Exclude vendor/
]
}
2014-02-10 14:29:41 +00:00
}
2014-02-02 19:22:05 +00:00
});
2014-01-30 16:11:02 +00:00
2014-02-02 19:22:05 +00:00
// Load NPM tasks to be used here
grunt.loadNpmTasks( 'grunt-shell' );
grunt.loadNpmTasks( 'grunt-wp-i18n' );
grunt.loadNpmTasks( 'grunt-checktextdomain' );
2014-08-04 14:12:50 +00:00
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
2014-09-22 16:55:53 +00:00
grunt.loadNpmTasks( 'grunt-contrib-sass' );
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
2014-02-02 21:33:20 +00:00
grunt.loadNpmTasks( 'grunt-contrib-watch' );
2014-02-10 12:52:41 +00:00
grunt.loadNpmTasks( 'grunt-contrib-clean' );
2016-08-08 19:32:39 +00:00
grunt.loadNpmTasks( 'grunt-stylelint' );
2016-09-13 21:24:01 +00:00
grunt.loadNpmTasks( 'grunt-phpcs' );
2014-02-02 19:22:05 +00:00
// Register tasks
grunt.registerTask( 'default', [
'jshint',
'uglify',
'css'
]);
2016-01-22 19:42:05 +00:00
grunt.registerTask( 'js', [
'jshint',
'uglify:admin',
'uglify:frontend'
]);
grunt.registerTask( 'css', [
2016-08-16 21:26:42 +00:00
'stylelint',
'sass',
'cssmin'
]);
2014-02-14 14:29:30 +00:00
grunt.registerTask( 'docs', [
'clean:apigen',
2014-02-14 14:29:30 +00:00
'shell:apigen'
]);
grunt.registerTask( 'dev', [
'default',
2014-08-01 12:53:31 +00:00
'makepot'
]);
};