fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wlxml: fix list extension's document methods definition
[fnpeditor.git]
/
Gruntfile.js
diff --git
a/Gruntfile.js
b/Gruntfile.js
index
55ee1c8
..
4f15a55
100644
(file)
--- a/
Gruntfile.js
+++ b/
Gruntfile.js
@@
-1,4
+1,12
@@
+/* global module */
+
module.exports = function(grunt) {
module.exports = function(grunt) {
+ 'use strict';
+
+ var build_output_dir = grunt.option('output-dir') || 'build',
+ less_files = {};
+
+ less_files[build_output_dir + '/rng.css'] = 'src/editor/styles/main.less';
grunt.initConfig({
requirejs: {
grunt.initConfig({
requirejs: {
@@
-6,7
+14,7
@@
module.exports = function(grunt) {
options: {
baseUrl: 'src/editor',
mainConfigFile: 'src/editor/entrypoint.js',
options: {
baseUrl: 'src/editor',
mainConfigFile: 'src/editor/entrypoint.js',
- out:
'build
/rng.js',
+ out:
build_output_dir + '
/rng.js',
name: 'entrypoint',
include: ['libs/require']
}
name: 'entrypoint',
include: ['libs/require']
}
@@
-16,11
+24,11
@@
module.exports = function(grunt) {
production: {
options: {
paths: [''],
production: {
options: {
paths: [''],
- yuicompress: true
- },
- files: {
- 'build/rng.css': 'src/editor/styles/main.less'
+ cleancss: true,
+ relativeUrls: true,
+ rootpath: 'src/editor/styles/'
},
},
+ files: less_files,
},
},
jshint: {
},
},
jshint: {
@@
-28,14
+36,22
@@
module.exports = function(grunt) {
options: {
jshintrc: '.jshintrc'
}
options: {
jshintrc: '.jshintrc'
}
+ },
+ copy: {
+ resources: {
+ files: [
+ {src: ['libs/bootstrap/img/**'], dest: build_output_dir+'/'},
+ ]
+ }
}
});
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-jshint');
}
});
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-jshint');
+ grunt.loadNpmTasks('grunt-contrib-copy');
- grunt.registerTask('build', ['requirejs', 'less:production']);
+ grunt.registerTask('build', ['requirejs', 'less:production'
, 'copy:resources'
]);
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('default', ['build']);
};
\ No newline at end of file
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('default', ['build']);
};
\ No newline at end of file