mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Preventing optional packages from being install.
This commit is contained in:
parent
5b74f9cbdb
commit
c926cc1171
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ module.exports = function (grunt) {
|
|||
grunt.registerTask('npm_install_kibana', 'NPM isntall kibana server into dist', function () {
|
||||
var done = this.async();
|
||||
var cwd = join(grunt.config.get('build'), 'dist', 'kibana', 'src');
|
||||
var command = 'npm install --production';
|
||||
var command = 'npm install --production --no-optional';
|
||||
var options = { cwd: cwd };
|
||||
child_process.exec(command, options, function (err, stdout, stderr) {
|
||||
if (err) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue