diff --git a/book.json b/book.json index dfaf542a6..6d5c99c7c 100644 --- a/book.json +++ b/book.json @@ -4,12 +4,8 @@ "structure": { "summary": "docs/README.md" }, - "plugins": ["edit-link", "prism", "-highlight", "github", "anker-enable"], + "plugins": ["prism", "-highlight", "github", "anker-enable"], "pluginsConfig": { - "edit-link": { - "base": "https://github.com/gschier/insomnia/tree/master", - "label": "Edit This Page" - }, "github": { "url": "https://github.com/gschier/insomnia/" } diff --git a/package.json b/package.json index 548246a96..e9c79c52b 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "hot-server": "node -r babel-register ./webpack/server.js", "dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"", "test": "jest $@", - "package": "./scripts/package" + "package": "bash scripts/package.sh" }, "jest": { "unmockedModulePathPatterns": [ diff --git a/scripts/package b/scripts/package.sh old mode 100755 new mode 100644 similarity index 100% rename from scripts/package rename to scripts/package.sh diff --git a/webpack/webpack.config.base.js b/webpack/webpack.config.base.js index 242233eb7..48f3a6177 100644 --- a/webpack/webpack.config.base.js +++ b/webpack/webpack.config.base.js @@ -61,7 +61,7 @@ export default { }, externals: [ - // Omit all the app package dependencies (we want them loaded at runtime via NodeJS) + // Omit all the app package.sh dependencies (we want them loaded at runtime via NodeJS) ...Object.keys(pkg.dependencies) ], plugins: [],