Page MenuHomeWickedGov Phorge

Gruntfile.js
No OneTemporary

Size
701 B
Referenced Files
None
Subscribers
None

Gruntfile.js

'use strict';
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( {
banana: conf.MessagesDirs,
eslint: {
options: {
cache: true,
fix: grunt.option( 'fix' )
},
all: [
'**/*.js{,on}',
'!node_modules/**',
'!vendor/**'
]
},
stylelint: {
options: {
cache: true
},
all: [
'**/*.{le,c}ss',
'!node_modules/**',
'!vendor/**'
]
}
} );
grunt.registerTask( 'test', [ 'eslint', 'banana', 'stylelint' ] );
grunt.registerTask( 'default', 'test' );
};

File Metadata

Mime Type
text/plain
Expires
Sat, May 16, 15:46 (14 h, 50 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
dc/b6/eb44f580f248723845cd73d32248
Default Alt Text
Gruntfile.js (701 B)

Event Timeline