Page MenuHomeWickedGov Phorge

Gruntfile.js
No OneTemporary

Size
531 B
Referenced Files
None
Subscribers
None

Gruntfile.js

/*!
* Grunt file
*
* @package ContactPage
*/
'use strict';
module.exports = function ( grunt ) {
const conf = grunt.file.readJSON( 'extension.json' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.initConfig( {
banana: conf.MessagesDirs,
eslint: {
options: {
cache: true
},
all: [
'**/*.{js,json}',
'!node_modules/**',
'!vendor/**'
]
}
} );
grunt.registerTask( 'test', [ 'eslint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};

File Metadata

Mime Type
text/plain
Expires
Sat, May 16, 12:37 (1 d, 7 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
42/e2/8155a9f50991186b621858cff408
Default Alt Text
Gruntfile.js (531 B)

Event Timeline