mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-08-02 12:40:14 +08:00
move some root-level build-related files into build directory
This commit is contained in:
+3
-4
@@ -309,14 +309,13 @@ module.exports = function(grunt) {
|
||||
]);
|
||||
|
||||
// configs located elsewhere
|
||||
config.jshint = require('./jshint.conf');
|
||||
config.jscs = require('./jscs.conf');
|
||||
config.jshint = require('./build/jshint.conf');
|
||||
config.jscs = require('./build/jscs.conf');
|
||||
|
||||
|
||||
|
||||
// finally, give grunt the config object...
|
||||
grunt.initConfig(config);
|
||||
|
||||
// load everything in the ./tasks/ directory
|
||||
grunt.loadTasks('tasks');
|
||||
grunt.loadTasks('./build/tasks/');
|
||||
};
|
||||
|
||||
@@ -37,7 +37,8 @@ module.exports = {
|
||||
},
|
||||
src: [
|
||||
'dist/*.js',
|
||||
'!**/lang-all.js' // exclude
|
||||
'!**/*.min.js', // exclude
|
||||
'!**/lang-all.js' //
|
||||
]
|
||||
},
|
||||
|
||||
@@ -45,6 +46,9 @@ module.exports = {
|
||||
|
||||
tests: 'tests/automated/*.js',
|
||||
|
||||
misc: '*.js' // config files in root
|
||||
misc: [
|
||||
'*.js', // ex: Gruntfile.js
|
||||
'build/*.js' // ex: this file
|
||||
]
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user