kibana/tasks/build/remove_pkg_json_deps.js
2016-02-24 12:14:05 -08:00

12 lines
307 B
JavaScript

module.exports = function (grunt) {
grunt.registerTask('_build:removePkgJsonDeps', function () {
const pkg = grunt.file.readJSON('build/kibana/package.json');
delete pkg.dependencies;
grunt.file.write(
'build/kibana/package.json',
JSON.stringify(pkg, null, ' ')
);
});
};