Page MenuHomeWickedGov Phorge

Gruntfile.js
No OneTemporary

Size
643 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( {
eslint: {
options: {
cache: true,
fix: grunt.option( 'fix' )
},
all: [
'.'
]
},
stylelint: {
src: [
'**/*.css',
'**/*.less',
'!lib/**',
'!node_modules/**',
'!vendor/**'
]
},
banana: conf.MessagesDirs
} );
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'banana' ] );
grunt.registerTask( 'default', [ 'test' ] );
};

File Metadata

Mime Type
text/plain
Expires
Wed, Aug 19, 15:34 (3 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f6/9d/0d1647321211d6dd2c7d08970a8d
Default Alt Text
Gruntfile.js (643 B)

Event Timeline