Artificial intelligent assistant

gruntのタスク実行で「Task not found. Use --force to continue」と出る grunt < gruntfile.js module.exports = function (grunt) { grunt.loadNpmTasks('grunt-license-report'); grunt.initConfig({ "grunt-License-Report": { output: { path: './report/licenses', format: 'html' } } }); grunt.registerTask('default', ['grunt-License-Report']); }; grunt Warning: Task "grunt-License-Report" not found. Use --force to continue. Aborted due to warnings.


gruntfile.js


module.exports = function (grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
"grunt-license-report": {
output: {
path: './report/licenses',
format: 'html'
}
}
});

grunt.loadNpmTasks('grunt-license-report');
grunt.registerTask('default', ['grunt-license-report']);

};

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 788b47b63c59f0ec0fa9ca9d6d652352