├── .circleci ├── config.yml └── setup-puppeteer.sh ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FAQ.md ├── FEATURES.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG.md │ ├── DOCS.md │ ├── FEATURE.md │ ├── MODIFICATION.md │ └── SUPPORT.md ├── PULL_REQUEST_TEMPLATE.md ├── funding.yml └── labels.json ├── .gitignore ├── .nvmrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── assets ├── 404.png ├── serve.svg ├── status-beacons-top funky.gif ├── status-beacons.gif └── status-overlay.png ├── client.js ├── codecov.yml ├── commitlint.config.js ├── lib ├── client │ ├── ClientSocket.js │ ├── client.js │ ├── hmr.js │ ├── log.js │ └── overlays │ │ ├── progress-minimal.js │ │ ├── progress.js │ │ ├── status.js │ │ └── util.js ├── errors.js ├── helpers.js ├── index.js ├── log.js ├── middleware.js ├── plugins │ ├── hmr.js │ └── ramdisk.js ├── routes.js ├── server.js ├── validate.js └── ws.js ├── package.json ├── pnpm-lock.yaml ├── recipes ├── README.md ├── angular │ ├── .eslintrc │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── index.html │ │ └── polyfills.ts │ ├── tsconfig.json │ ├── tslint.json │ └── webpack.config.js ├── bonjour-broadcast.md ├── builtin-middleware.md ├── create-react-app │ ├── .gitignore │ ├── README.md │ ├── config-overrides.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ └── serviceWorker.js │ └── webpack.config.js ├── custom-headers.md ├── dynamic-port.md ├── entry-points.md ├── four0four.md ├── internal-ip.md ├── multi-compiler.md ├── multi-entry.md ├── open-custom-uri.md ├── proxies.md ├── react-ssr │ ├── .eslintrc │ ├── README.md │ ├── client │ │ ├── Root.js │ │ └── index.js │ ├── package-lock.json │ ├── package.json │ ├── server │ │ ├── index.js │ │ └── main.js │ └── webpack.config.js ├── react │ ├── .babelrc │ ├── .eslintrc │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── index.js │ │ └── style.css │ └── webpack.config.js ├── refresh-on-failure │ ├── .babelrc │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.jsx │ │ ├── another.js │ │ └── index.js │ └── webpack.config.js ├── static-html-files.md ├── vue │ ├── .babelrc │ ├── .eslintrc │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ └── index.js │ └── webpack.config.js └── watch-static-content.md └── test ├── .eslintrc ├── errors.test.js ├── fixtures ├── https │ ├── app.js │ ├── index.html │ ├── localhost.crt │ ├── localhost.key │ ├── localhost.pfx │ └── webpack.config.js ├── multi │ ├── app.js │ ├── component.js │ ├── index.html │ ├── webpack.config.js │ ├── work.js │ └── worker.js ├── proxy │ ├── app.js │ ├── component.js │ ├── index.html │ ├── proxy-rewrite.config.js │ ├── proxy-server.js │ └── webpack.config.js ├── ramdisk-empty-pkg │ ├── app.js │ ├── package.json │ └── webpack.config.js ├── ramdisk │ ├── app.js │ ├── component.js │ ├── config-context-error.js │ ├── config-cwd-error.js │ ├── custom-options.js │ ├── cwd-error │ │ └── .gitkeep │ ├── index.html │ └── webpack.config.js ├── simple │ ├── app.js │ ├── component.js │ ├── index.html │ └── webpack.config.js └── wait-for-build │ ├── app.js │ └── make-config.js ├── helpers.test.js ├── helpers ├── port.js └── puppeteer.js ├── https.test.js ├── integration ├── force-refresh.test.js ├── multi-hmr.test.js └── single-hmr.test.js ├── middleware.test.js ├── plugin.test.js ├── proxy-rewrite.test.js ├── proxy.test.js ├── ramdisk.test.js ├── routes.test.js ├── server.test.js ├── snapshots ├── errors.test.js.md ├── errors.test.js.snap ├── plugin.test.js.md ├── plugin.test.js.snap ├── proxy-rewrite.test.js.md ├── proxy-rewrite.test.js.snap ├── proxy.test.js.md ├── proxy.test.js.snap ├── ramdisk.test.js.md ├── ramdisk.test.js.snap ├── validate.test.js.md └── validate.test.js.snap ├── validate.test.js ├── wait-for-build.test.js └── ws.test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/setup-puppeteer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.circleci/setup-puppeteer.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json -diff 2 | * text=auto 3 | bin/* eol=lf -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/FAQ.md -------------------------------------------------------------------------------- /.github/FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/FEATURES.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/ISSUE_TEMPLATE/BUG.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/ISSUE_TEMPLATE/DOCS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/ISSUE_TEMPLATE/FEATURE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/MODIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/ISSUE_TEMPLATE/MODIFICATION.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/ISSUE_TEMPLATE/SUPPORT.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/README.md -------------------------------------------------------------------------------- /assets/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/assets/404.png -------------------------------------------------------------------------------- /assets/serve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/assets/serve.svg -------------------------------------------------------------------------------- /assets/status-beacons-top funky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/assets/status-beacons-top funky.gif -------------------------------------------------------------------------------- /assets/status-beacons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/assets/status-beacons.gif -------------------------------------------------------------------------------- /assets/status-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/assets/status-overlay.png -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/client.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/codecov.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /lib/client/ClientSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/ClientSocket.js -------------------------------------------------------------------------------- /lib/client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/client.js -------------------------------------------------------------------------------- /lib/client/hmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/hmr.js -------------------------------------------------------------------------------- /lib/client/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/log.js -------------------------------------------------------------------------------- /lib/client/overlays/progress-minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/overlays/progress-minimal.js -------------------------------------------------------------------------------- /lib/client/overlays/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/overlays/progress.js -------------------------------------------------------------------------------- /lib/client/overlays/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/overlays/status.js -------------------------------------------------------------------------------- /lib/client/overlays/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/client/overlays/util.js -------------------------------------------------------------------------------- /lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/errors.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/middleware.js -------------------------------------------------------------------------------- /lib/plugins/hmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/plugins/hmr.js -------------------------------------------------------------------------------- /lib/plugins/ramdisk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/plugins/ramdisk.js -------------------------------------------------------------------------------- /lib/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/routes.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/server.js -------------------------------------------------------------------------------- /lib/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/validate.js -------------------------------------------------------------------------------- /lib/ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/lib/ws.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/README.md -------------------------------------------------------------------------------- /recipes/angular/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/.eslintrc -------------------------------------------------------------------------------- /recipes/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/.gitignore -------------------------------------------------------------------------------- /recipes/angular/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/LICENSE -------------------------------------------------------------------------------- /recipes/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/README.md -------------------------------------------------------------------------------- /recipes/angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/package-lock.json -------------------------------------------------------------------------------- /recipes/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/package.json -------------------------------------------------------------------------------- /recipes/angular/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/src/app.ts -------------------------------------------------------------------------------- /recipes/angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

{{message}}

2 | -------------------------------------------------------------------------------- /recipes/angular/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/src/app/app.component.scss -------------------------------------------------------------------------------- /recipes/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /recipes/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /recipes/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/src/index.html -------------------------------------------------------------------------------- /recipes/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/src/polyfills.ts -------------------------------------------------------------------------------- /recipes/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/tsconfig.json -------------------------------------------------------------------------------- /recipes/angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/tslint.json -------------------------------------------------------------------------------- /recipes/angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/angular/webpack.config.js -------------------------------------------------------------------------------- /recipes/bonjour-broadcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/bonjour-broadcast.md -------------------------------------------------------------------------------- /recipes/builtin-middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/builtin-middleware.md -------------------------------------------------------------------------------- /recipes/create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/.gitignore -------------------------------------------------------------------------------- /recipes/create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/README.md -------------------------------------------------------------------------------- /recipes/create-react-app/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/config-overrides.js -------------------------------------------------------------------------------- /recipes/create-react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/package-lock.json -------------------------------------------------------------------------------- /recipes/create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/package.json -------------------------------------------------------------------------------- /recipes/create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /recipes/create-react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/public/index.html -------------------------------------------------------------------------------- /recipes/create-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/public/manifest.json -------------------------------------------------------------------------------- /recipes/create-react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/App.css -------------------------------------------------------------------------------- /recipes/create-react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/App.js -------------------------------------------------------------------------------- /recipes/create-react-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/App.test.js -------------------------------------------------------------------------------- /recipes/create-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/index.css -------------------------------------------------------------------------------- /recipes/create-react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/index.js -------------------------------------------------------------------------------- /recipes/create-react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/logo.svg -------------------------------------------------------------------------------- /recipes/create-react-app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/src/serviceWorker.js -------------------------------------------------------------------------------- /recipes/create-react-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/create-react-app/webpack.config.js -------------------------------------------------------------------------------- /recipes/custom-headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/custom-headers.md -------------------------------------------------------------------------------- /recipes/dynamic-port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/dynamic-port.md -------------------------------------------------------------------------------- /recipes/entry-points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/entry-points.md -------------------------------------------------------------------------------- /recipes/four0four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/four0four.md -------------------------------------------------------------------------------- /recipes/internal-ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/internal-ip.md -------------------------------------------------------------------------------- /recipes/multi-compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/multi-compiler.md -------------------------------------------------------------------------------- /recipes/multi-entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/multi-entry.md -------------------------------------------------------------------------------- /recipes/open-custom-uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/open-custom-uri.md -------------------------------------------------------------------------------- /recipes/proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/proxies.md -------------------------------------------------------------------------------- /recipes/react-ssr/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/.eslintrc -------------------------------------------------------------------------------- /recipes/react-ssr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/README.md -------------------------------------------------------------------------------- /recipes/react-ssr/client/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/client/Root.js -------------------------------------------------------------------------------- /recipes/react-ssr/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/client/index.js -------------------------------------------------------------------------------- /recipes/react-ssr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/package-lock.json -------------------------------------------------------------------------------- /recipes/react-ssr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/package.json -------------------------------------------------------------------------------- /recipes/react-ssr/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/server/index.js -------------------------------------------------------------------------------- /recipes/react-ssr/server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/server/main.js -------------------------------------------------------------------------------- /recipes/react-ssr/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react-ssr/webpack.config.js -------------------------------------------------------------------------------- /recipes/react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/.babelrc -------------------------------------------------------------------------------- /recipes/react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/.eslintrc -------------------------------------------------------------------------------- /recipes/react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/LICENSE -------------------------------------------------------------------------------- /recipes/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/README.md -------------------------------------------------------------------------------- /recipes/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/package-lock.json -------------------------------------------------------------------------------- /recipes/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/package.json -------------------------------------------------------------------------------- /recipes/react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/src/App.js -------------------------------------------------------------------------------- /recipes/react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/src/index.js -------------------------------------------------------------------------------- /recipes/react/src/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /recipes/react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/react/webpack.config.js -------------------------------------------------------------------------------- /recipes/refresh-on-failure/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/.babelrc -------------------------------------------------------------------------------- /recipes/refresh-on-failure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/README.md -------------------------------------------------------------------------------- /recipes/refresh-on-failure/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/package-lock.json -------------------------------------------------------------------------------- /recipes/refresh-on-failure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/package.json -------------------------------------------------------------------------------- /recipes/refresh-on-failure/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/src/App.jsx -------------------------------------------------------------------------------- /recipes/refresh-on-failure/src/another.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/src/another.js -------------------------------------------------------------------------------- /recipes/refresh-on-failure/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/src/index.js -------------------------------------------------------------------------------- /recipes/refresh-on-failure/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/refresh-on-failure/webpack.config.js -------------------------------------------------------------------------------- /recipes/static-html-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/static-html-files.md -------------------------------------------------------------------------------- /recipes/vue/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/.babelrc -------------------------------------------------------------------------------- /recipes/vue/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/.eslintrc -------------------------------------------------------------------------------- /recipes/vue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/LICENSE -------------------------------------------------------------------------------- /recipes/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/README.md -------------------------------------------------------------------------------- /recipes/vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/package-lock.json -------------------------------------------------------------------------------- /recipes/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/package.json -------------------------------------------------------------------------------- /recipes/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/src/App.vue -------------------------------------------------------------------------------- /recipes/vue/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/src/index.js -------------------------------------------------------------------------------- /recipes/vue/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/vue/webpack.config.js -------------------------------------------------------------------------------- /recipes/watch-static-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/recipes/watch-static-content.md -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/errors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/errors.test.js -------------------------------------------------------------------------------- /test/fixtures/https/app.js: -------------------------------------------------------------------------------- 1 | console.log('ok'); 2 | -------------------------------------------------------------------------------- /test/fixtures/https/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/https/index.html -------------------------------------------------------------------------------- /test/fixtures/https/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/https/localhost.crt -------------------------------------------------------------------------------- /test/fixtures/https/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/https/localhost.key -------------------------------------------------------------------------------- /test/fixtures/https/localhost.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/https/localhost.pfx -------------------------------------------------------------------------------- /test/fixtures/https/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/https/webpack.config.js -------------------------------------------------------------------------------- /test/fixtures/multi/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/multi/app.js -------------------------------------------------------------------------------- /test/fixtures/multi/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/multi/component.js -------------------------------------------------------------------------------- /test/fixtures/multi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/multi/index.html -------------------------------------------------------------------------------- /test/fixtures/multi/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/multi/webpack.config.js -------------------------------------------------------------------------------- /test/fixtures/multi/work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/multi/work.js -------------------------------------------------------------------------------- /test/fixtures/multi/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/multi/worker.js -------------------------------------------------------------------------------- /test/fixtures/proxy/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/proxy/app.js -------------------------------------------------------------------------------- /test/fixtures/proxy/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/proxy/component.js -------------------------------------------------------------------------------- /test/fixtures/proxy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/proxy/index.html -------------------------------------------------------------------------------- /test/fixtures/proxy/proxy-rewrite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/proxy/proxy-rewrite.config.js -------------------------------------------------------------------------------- /test/fixtures/proxy/proxy-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/proxy/proxy-server.js -------------------------------------------------------------------------------- /test/fixtures/proxy/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/proxy/webpack.config.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk-empty-pkg/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk-empty-pkg/app.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk-empty-pkg/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fixtures/ramdisk-empty-pkg/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk-empty-pkg/webpack.config.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/app.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/component.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk/config-context-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/config-context-error.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk/config-cwd-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/config-cwd-error.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk/custom-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/custom-options.js -------------------------------------------------------------------------------- /test/fixtures/ramdisk/cwd-error/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/ramdisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/index.html -------------------------------------------------------------------------------- /test/fixtures/ramdisk/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/ramdisk/webpack.config.js -------------------------------------------------------------------------------- /test/fixtures/simple/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/simple/app.js -------------------------------------------------------------------------------- /test/fixtures/simple/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/simple/component.js -------------------------------------------------------------------------------- /test/fixtures/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/simple/index.html -------------------------------------------------------------------------------- /test/fixtures/simple/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/simple/webpack.config.js -------------------------------------------------------------------------------- /test/fixtures/wait-for-build/app.js: -------------------------------------------------------------------------------- 1 | module.exports = 'hello'; 2 | -------------------------------------------------------------------------------- /test/fixtures/wait-for-build/make-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/fixtures/wait-for-build/make-config.js -------------------------------------------------------------------------------- /test/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/helpers.test.js -------------------------------------------------------------------------------- /test/helpers/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/helpers/port.js -------------------------------------------------------------------------------- /test/helpers/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/helpers/puppeteer.js -------------------------------------------------------------------------------- /test/https.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/https.test.js -------------------------------------------------------------------------------- /test/integration/force-refresh.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/integration/force-refresh.test.js -------------------------------------------------------------------------------- /test/integration/multi-hmr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/integration/multi-hmr.test.js -------------------------------------------------------------------------------- /test/integration/single-hmr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/integration/single-hmr.test.js -------------------------------------------------------------------------------- /test/middleware.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/middleware.test.js -------------------------------------------------------------------------------- /test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/plugin.test.js -------------------------------------------------------------------------------- /test/proxy-rewrite.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/proxy-rewrite.test.js -------------------------------------------------------------------------------- /test/proxy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/proxy.test.js -------------------------------------------------------------------------------- /test/ramdisk.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/ramdisk.test.js -------------------------------------------------------------------------------- /test/routes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/routes.test.js -------------------------------------------------------------------------------- /test/server.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/server.test.js -------------------------------------------------------------------------------- /test/snapshots/errors.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/errors.test.js.md -------------------------------------------------------------------------------- /test/snapshots/errors.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/errors.test.js.snap -------------------------------------------------------------------------------- /test/snapshots/plugin.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/plugin.test.js.md -------------------------------------------------------------------------------- /test/snapshots/plugin.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/plugin.test.js.snap -------------------------------------------------------------------------------- /test/snapshots/proxy-rewrite.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/proxy-rewrite.test.js.md -------------------------------------------------------------------------------- /test/snapshots/proxy-rewrite.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/proxy-rewrite.test.js.snap -------------------------------------------------------------------------------- /test/snapshots/proxy.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/proxy.test.js.md -------------------------------------------------------------------------------- /test/snapshots/proxy.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/proxy.test.js.snap -------------------------------------------------------------------------------- /test/snapshots/ramdisk.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/ramdisk.test.js.md -------------------------------------------------------------------------------- /test/snapshots/ramdisk.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/ramdisk.test.js.snap -------------------------------------------------------------------------------- /test/snapshots/validate.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/validate.test.js.md -------------------------------------------------------------------------------- /test/snapshots/validate.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/snapshots/validate.test.js.snap -------------------------------------------------------------------------------- /test/validate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/validate.test.js -------------------------------------------------------------------------------- /test/wait-for-build.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/wait-for-build.test.js -------------------------------------------------------------------------------- /test/ws.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/webpack-plugin-serve/HEAD/test/ws.test.js --------------------------------------------------------------------------------