Page MenuHomeWickedGov Phorge

Gruntfile.js
No OneTemporary

Size
613 B
Referenced Files
None
Subscribers
None

Gruntfile.js

/* eslint-env node */
module.exports = function ( grunt ) {
const conf = grunt.file.readJSON( 'extension.json' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.loadNpmTasks( 'grunt-stylelint' );
grunt.initConfig( {
eslint: {
options: {
cache: true
},
all: '.'
},
stylelint: {
options: {
cache: true
},
all: [
'**/*.{css,less}',
'!node_modules/**',
'!vendor/**'
]
},
banana: conf.MessagesDirs
} );
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 31, 04:55 (1 d, 5 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f8/25/66f4d2329151f511a8d9a8229d7b
Default Alt Text
Gruntfile.js (613 B)

Event Timeline