mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
fixes windows path un ui-framework startup (#9940)
Backports PR #9934
**Commit 1:**
fixes windows path un ui-framework startup
* Original sha: 33e3d3e390
* Authored by Jim Unger <bigfunger@gmail.com> on 2017-01-18T20:56:36Z
This commit is contained in:
parent
9e842d96e5
commit
c58bca9532
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ module.exports = function (grunt) {
|
|||
|
||||
function uiFrameworkServerStart() {
|
||||
const serverCmd = {
|
||||
cmd: /^win/.test(platform) ? '.\\node_modules\\.bin\\webpack-dev-server' : './node_modules/.bin/webpack-dev-server',
|
||||
cmd: /^win/.test(platform) ? '.\\node_modules\\.bin\\webpack-dev-server.cmd' : './node_modules/.bin/webpack-dev-server',
|
||||
args: [
|
||||
'--config=ui_framework/doc_site/webpack.config.js',
|
||||
'--hot ',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue