1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Update Gruntfile so only core nodes are linted.

This commit is contained in:
dceejay 2015-06-15 20:38:40 +01:00
parent 8a6d11b191
commit 0dbf43d0aa

View File

@ -53,10 +53,9 @@ module.exports = function(grunt) {
'Gruntfile.js',
'red.js',
'red/**/*.js',
'nodes/**/*.js',
'nodes/core/*/*.js',
'editor/js/**/*.js'
],
core: {
files: {
src: [
@ -68,7 +67,7 @@ module.exports = function(grunt) {
},
nodes: {
files: {
src: [ 'nodes/**/*.js' ]
src: [ 'nodes/core/*/*.js' ]
}
},
editor: {
@ -342,12 +341,11 @@ module.exports = function(grunt) {
});
grunt.registerTask('setDevEnv',
'Sets NODE_ENV=development to non-minified assets are used',
'Sets NODE_ENV=development so non-minified assets are used',
function () {
process.env.NODE_ENV = 'development';
});
grunt.registerTask('default',
'Builds editor content then runs code style checks and unit tests on all components',
['build','test-core','test-editor','test-nodes']);
@ -376,5 +374,4 @@ module.exports = function(grunt) {
'Create distribution zip file',
['build','clean:release','copy:release','compress:release']);
};