Page MenuHomeWickedGov Phorge

Gruntfile.js
No OneTemporary

Size
559 B
Referenced Files
None
Subscribers
None

Gruntfile.js

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

File Metadata

Mime Type
text/plain
Expires
Sat, May 16, 13:34 (1 d, 16 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
34/34/914ae589b695f89b886bb55e9fd3
Default Alt Text
Gruntfile.js (559 B)

Event Timeline