diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aaa3841..a47ecd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: uses: actions/checkout@v2 with: repository: maputnik/desktop - ref: v1.0.6 + ref: v1.0.7 path: ./src/github.com/maputnik/desktop/ - name: Make diff --git a/config/webpack.config.js b/config/webpack.config.js index ecccaf9..4c0d6ab 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -53,7 +53,7 @@ module.exports = { // See for details poll: (!!process.env.WEBPACK_DEV_SERVER_POLLING ? true : false), watch: false - } + }, }, plugins: [ new webpack.NoEmitOnErrorsPlugin(), diff --git a/package.json b/package.json index 4faa04e..69a6860 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "test-watch": "cross-env NODE_ENV=test wdio config/wdio.conf.js --watch", "start": "webpack-dev-server --progress --profile --colors --config config/webpack.config.js", "start-prod": "webpack-dev-server --progress --profile --colors --config config/webpack.production.config.js", + "start-sandbox": "webpack-dev-server --disable-host-check --host 0.0.0.0 --progress --profile --colors --config config/webpack.production.config.js", "lint-js": "eslint --ext js --ext jsx src test", "lint-css": "stylelint \"src/styles/*.scss\"", "lint": "npm run lint-js && npm run lint-css", diff --git a/sandbox.config.json b/sandbox.config.json index a2847a4..e241c0f 100644 --- a/sandbox.config.json +++ b/sandbox.config.json @@ -1,5 +1,5 @@ { "container": { - "startScript": "start-prod" + "startScript": "start-sandbox" } }