├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── .netlify └── state.json ├── .travis.yml ├── .vscode ├── settings.json └── spellright.dict ├── .yarn └── releases │ └── yarn-1.18.0.cjs ├── .yarnrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── wpackio-logo.png ├── babel.config.js ├── docs └── README.md ├── e2e ├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── __tests__ │ └── fileExists.intg.js ├── cypress.json ├── cypress │ ├── fixtures │ │ └── example.json │ ├── integration │ │ ├── build │ │ │ └── prod.spec.js │ │ └── serve │ │ │ └── app.spec.js │ ├── plugins │ │ └── index.js │ └── support │ │ ├── commands.js │ │ └── index.js ├── index.html ├── jest.config.js ├── package.json ├── postcss.config.js ├── prod.html ├── src │ ├── app │ │ ├── assets │ │ │ ├── bg.jpg │ │ │ ├── fonts │ │ │ │ ├── open-sans-v17-latin-700.woff │ │ │ │ ├── open-sans-v17-latin-700.woff2 │ │ │ │ ├── open-sans-v17-latin-700italic.woff │ │ │ │ ├── open-sans-v17-latin-700italic.woff2 │ │ │ │ ├── open-sans-v17-latin-italic.woff │ │ │ │ ├── open-sans-v17-latin-italic.woff2 │ │ │ │ ├── open-sans-v17-latin-regular.woff │ │ │ │ └── open-sans-v17-latin-regular.woff2 │ │ │ └── img.jpg │ │ ├── dynamic.js │ │ ├── lib.js │ │ ├── main.js │ │ ├── style.less │ │ └── style.scss │ └── tsapp │ │ ├── dynamic.ts │ │ ├── main.ts │ │ ├── module.ts │ │ ├── style.less │ │ └── style.scss ├── tsconfig.json ├── wpackio.project.js ├── wpackio.server.js └── yarn.lock ├── examples ├── README.md ├── plugin │ ├── .browserslistrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── CHANGELOG.md │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── docker-compose.yml │ ├── inc │ │ └── class-wpackio-plugin-init.php │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.js │ ├── reactapp.gif │ ├── src │ │ ├── app │ │ │ ├── bg.jpg │ │ │ ├── image.png │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── mobile.js │ │ │ ├── modules │ │ │ │ ├── dynamic.js │ │ │ │ └── logger.js │ │ │ ├── style.less │ │ │ └── svg.svg │ │ ├── foo │ │ │ ├── bar.js │ │ │ └── foo.js │ │ ├── reactapp │ │ │ ├── App.jsx │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ ├── Box.jsx │ │ │ │ ├── List.jsx │ │ │ │ ├── List.scss │ │ │ │ ├── Todo.jsx │ │ │ │ └── svg.svg │ │ │ ├── index.jsx │ │ │ └── index.scss │ │ └── ts │ │ │ ├── .eslintrc.js │ │ │ ├── main.ts │ │ │ └── module.ts │ ├── tsconfig.json │ ├── wpackio-plugin.php │ ├── wpackio.project.js │ ├── wpackio.server.js │ └── yarn.lock ├── theme │ ├── .browserslistrc │ ├── .gitignore │ ├── 404.php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── archive.php │ ├── comments.php │ ├── composer.json │ ├── composer.lock │ ├── docker-compose.yml │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── inc │ │ ├── custom-header.php │ │ ├── customizer.php │ │ ├── jetpack.php │ │ ├── template-functions.php │ │ └── template-tags.php │ ├── index.php │ ├── js │ │ ├── customizer.js │ │ ├── navigation.js │ │ └── skip-link-focus-fix.js │ ├── languages │ │ ├── readme.txt │ │ └── wpackio-theme.pot │ ├── layouts │ │ ├── content-sidebar.css │ │ └── sidebar-content.css │ ├── package.json │ ├── page.php │ ├── phpcs.xml.dist │ ├── postcss.config.js │ ├── readme.txt │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar.php │ ├── single.php │ ├── src │ │ ├── single │ │ │ ├── module.js │ │ │ └── single.js │ │ └── theme │ │ │ ├── main.js │ │ │ └── main.scss │ ├── style.css │ ├── template-parts │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-search.php │ │ └── content.php │ ├── wpackio.project.js │ ├── wpackio.server.js │ └── yarn.lock └── tryouts │ ├── package-empty.json │ └── package.json ├── jest.base.js ├── lerna.json ├── netlify.toml ├── package.json ├── packages ├── babel-preset-base │ ├── .eslintrc.js │ ├── .npmignore │ ├── @types │ │ └── babel-helper-plugin-utils.d.ts │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ │ └── @babel │ │ │ └── helper-plugin-utils.ts │ ├── __tests__ │ │ ├── index.spec.ts │ │ └── preset.spec.ts │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── preset.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── cli │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── entrypoint │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── index.spec.ts │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── module.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── eslint-config │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.js │ ├── config │ │ ├── env.js │ │ ├── extends.js │ │ └── rules.js │ ├── index.js │ ├── package.json │ ├── prettier.config.js │ └── ts.js └── scripts │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .npmignore │ ├── @types │ ├── boxen.d.ts │ ├── dev-ip.d.ts │ ├── extract-css-chunks-webpack-plugin.d.ts │ ├── miniCssExtractPlugin.d.ts │ ├── react-dev-utils │ │ ├── WatchMissingNodeModulesPlugin.d.ts │ │ ├── clearConsole.d.ts │ │ ├── errorOverlayMiddleware.d.ts │ │ ├── formatWebpackMessages.d.ts │ │ ├── openBrowser.d.ts │ │ └── typescriptFormatter.d.ts │ ├── react-error-overlay │ │ └── index.d.ts │ ├── terminal-link.d.ts │ ├── time-fix-plugin.d.ts │ ├── webpack-dashboard │ │ ├── index.d.ts │ │ └── plugin.d.ts │ └── webpack-log.d.ts │ ├── CHANGELOG.md │ ├── PREFACE.md │ ├── README.md │ ├── __tests__ │ ├── config │ │ ├── CreateWebpackConfig.spec.ts │ │ ├── WebpackConfigHelper.spec.ts │ │ ├── __snapshots__ │ │ │ └── WebpackConfigHelper.spec.ts.snap │ │ └── getProjectAndServerConfig.spec.ts │ ├── helpers │ │ ├── dummyConfigRight.js │ │ ├── dummyConfigWrong.js │ │ ├── dummyPCRight.js │ │ ├── dummyPCWrong.js │ │ ├── dummySCRight.js │ │ ├── dummySCWrong.js │ │ ├── testConfig.ts │ │ ├── testUtils.ts │ │ ├── wpackio.project.js │ │ └── wpackio.server.js │ └── index.spec.ts │ ├── babel.config.js │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── bin │ │ ├── bootstrap.ts │ │ ├── build.ts │ │ ├── dev.ts │ │ ├── index.ts │ │ ├── pack.ts │ │ ├── serve.ts │ │ └── utils.ts │ ├── bs │ │ └── plugin.ts │ ├── config │ │ ├── CreateWebpackConfig.ts │ │ ├── WebpackConfigHelper.ts │ │ ├── babelConfig.ts │ │ ├── getProjectAndServerConfig.ts │ │ ├── loaderHelpers.ts │ │ ├── project.config.default.ts │ │ └── server.config.default.ts │ ├── dev-utils │ │ ├── WatchMissingNodeModules.ts │ │ ├── clearConsole.ts │ │ ├── formatWebpackMessages.ts │ │ ├── index.ts │ │ ├── ops.ts │ │ └── typescriptFormatter.ts │ ├── errors │ │ └── WpackioError.ts │ ├── index.ts │ ├── plugins │ │ └── DependencyExtractionWebpackPlugin.ts │ └── scripts │ │ ├── Bootstrap.ts │ │ ├── Build.ts │ │ ├── Pack.ts │ │ └── Server.ts │ ├── templates │ ├── wpackio.project.js.hbs │ └── wpackio.server.js.hbs │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ └── tslint.json ├── plop-templates ├── README.md └── package │ ├── .eslintignore.hbs │ ├── .eslintrc.js.hbs │ ├── .npmignore.hbs │ ├── README.md.hbs │ ├── babel.config.js.hbs │ ├── jest.config.js.hbs │ ├── package.json.hbs │ └── tsconfig.json.hbs ├── plopfile.js ├── prettier.config.js ├── renovate.json ├── site ├── .eslintrc ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── docs │ ├── apis │ │ ├── node-api.md │ │ ├── php-api.md │ │ ├── project-configuration.md │ │ └── server-configuration.md │ ├── commands │ │ ├── wpackio-cli.md │ │ └── wpackio-scripts.md │ ├── concepts │ │ ├── how-everything-works-together.md │ │ └── how-publicpath-works.md │ ├── guides │ │ ├── adding-custom-env-variables.md │ │ ├── changelog.md │ │ ├── creating-production.md │ │ ├── getting-started.md │ │ ├── start-development-server.md │ │ └── using-wpackio-enqueue.md │ └── tutorials │ │ ├── adding-custom-babel-config.md │ │ ├── adding-typescript.md │ │ ├── breaking-changes-v6.md │ │ ├── customizer-and-rest.md │ │ ├── extending-webpack-config.md │ │ ├── level-up-javascript.md │ │ ├── localize-script.md │ │ ├── manual-project-bootstrap.md │ │ ├── minimize-css-with-cssnano.md │ │ ├── react-hmr.gif │ │ ├── starting-selective-entries.md │ │ ├── updating-wpackio.md │ │ ├── using-file-loader.md │ │ ├── using-jest-babel.md │ │ ├── using-react-hot-loader.md │ │ └── using-various-svg-loader.md ├── frontpage │ ├── missions │ │ ├── contribute.md │ │ ├── how-it-works.md │ │ ├── what-can-we-do.md │ │ └── whats-new.md │ └── steps │ │ ├── 01-cli.gif │ │ ├── 01-cli.md │ │ ├── 02-bootstrap.gif │ │ ├── 02-bootstrap.md │ │ ├── 03-config.md │ │ ├── 03-config.png │ │ ├── 04-php.md │ │ ├── 04-php.png │ │ ├── 05-start.gif │ │ ├── 05-start.md │ │ ├── 06-build.gif │ │ ├── 06-build.md │ │ ├── 07-archive.gif │ │ └── 07-archive.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── prettier.config.js ├── src │ ├── components │ │ ├── WPEFormPromo │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── bulma.scss │ │ ├── dank-mono.css │ │ ├── docpage │ │ │ ├── index.js │ │ │ ├── index.scss │ │ │ └── sidebarnav │ │ │ │ ├── index.js │ │ │ │ └── index.scss │ │ ├── docsearch │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── feature │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── footer │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── header.js │ │ ├── header.scss │ │ ├── hero │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── layout.js │ │ ├── layout.scss │ │ ├── steps │ │ │ ├── index.js │ │ │ └── index.scss │ │ ├── svgs │ │ │ ├── chevron.svg │ │ │ ├── cloud.svg │ │ │ ├── dependable.svg │ │ │ ├── development.svg │ │ │ ├── github.svg │ │ │ ├── magnifier.svg │ │ │ ├── menu.svg │ │ │ ├── twitter.svg │ │ │ ├── wpackio-symbol.svg │ │ │ └── wpackio-text.svg │ │ ├── window │ │ │ ├── index.js │ │ │ └── index.scss │ │ └── wpackio │ │ │ └── index.js │ ├── images │ │ ├── favicon.png │ │ ├── feature.png │ │ ├── wpackio-logo.png │ │ ├── wpackio-symbol.svg │ │ ├── wpackio-text.svg │ │ └── wpeform.svg │ ├── pages │ │ ├── 404.js │ │ ├── index.js │ │ └── index.scss │ ├── templates │ │ ├── docRootTemplate.js │ │ └── docTemplate.js │ └── utils │ │ ├── background.js │ │ └── typography.js └── yarn.lock ├── tsconfig.base.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@wpackio/eslint-config'], 3 | }; 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: swashata 2 | open_collective: wpackio 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "siteId": "6dc87ac4-1ce2-49b7-ba6a-cd49222831a8" 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.vscode/spellright.dict -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.18.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.yarn/releases/yarn-1.18.0.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/README.md -------------------------------------------------------------------------------- /assets/wpackio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/assets/wpackio-logo.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | Check our [website](https://wpack.io). 2 | -------------------------------------------------------------------------------- /e2e/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | -------------------------------------------------------------------------------- /e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/.eslintrc.js -------------------------------------------------------------------------------- /e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/.gitignore -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/__tests__/fileExists.intg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/__tests__/fileExists.intg.js -------------------------------------------------------------------------------- /e2e/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "projectId": "r3p1vm" 3 | } 4 | -------------------------------------------------------------------------------- /e2e/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/cypress/fixtures/example.json -------------------------------------------------------------------------------- /e2e/cypress/integration/build/prod.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/cypress/integration/build/prod.spec.js -------------------------------------------------------------------------------- /e2e/cypress/integration/serve/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/cypress/integration/serve/app.spec.js -------------------------------------------------------------------------------- /e2e/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/cypress/plugins/index.js -------------------------------------------------------------------------------- /e2e/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/cypress/support/commands.js -------------------------------------------------------------------------------- /e2e/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/cypress/support/index.js -------------------------------------------------------------------------------- /e2e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/index.html -------------------------------------------------------------------------------- /e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/jest.config.js -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/postcss.config.js -------------------------------------------------------------------------------- /e2e/prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/prod.html -------------------------------------------------------------------------------- /e2e/src/app/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/bg.jpg -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-700.woff -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-700.woff2 -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-700italic.woff -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-700italic.woff2 -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-italic.woff -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-italic.woff2 -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-regular.woff -------------------------------------------------------------------------------- /e2e/src/app/assets/fonts/open-sans-v17-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/fonts/open-sans-v17-latin-regular.woff2 -------------------------------------------------------------------------------- /e2e/src/app/assets/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/assets/img.jpg -------------------------------------------------------------------------------- /e2e/src/app/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/dynamic.js -------------------------------------------------------------------------------- /e2e/src/app/lib.js: -------------------------------------------------------------------------------- 1 | import './style.scss'; 2 | 3 | console.log('hello from lib'); 4 | -------------------------------------------------------------------------------- /e2e/src/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/main.js -------------------------------------------------------------------------------- /e2e/src/app/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/style.less -------------------------------------------------------------------------------- /e2e/src/app/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/app/style.scss -------------------------------------------------------------------------------- /e2e/src/tsapp/dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/tsapp/dynamic.ts -------------------------------------------------------------------------------- /e2e/src/tsapp/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/tsapp/main.ts -------------------------------------------------------------------------------- /e2e/src/tsapp/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/src/tsapp/module.ts -------------------------------------------------------------------------------- /e2e/src/tsapp/style.less: -------------------------------------------------------------------------------- 1 | #yellow { 2 | color: #ffff00; 3 | } 4 | -------------------------------------------------------------------------------- /e2e/src/tsapp/style.scss: -------------------------------------------------------------------------------- 1 | #red { 2 | color: #ff0000; 3 | } 4 | -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/wpackio.project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/wpackio.project.js -------------------------------------------------------------------------------- /e2e/wpackio.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/wpackio.server.js -------------------------------------------------------------------------------- /e2e/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/e2e/yarn.lock -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/plugin/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25%, not dead -------------------------------------------------------------------------------- /examples/plugin/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: '@wpackio/eslint-config', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/.gitignore -------------------------------------------------------------------------------- /examples/plugin/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.autoFixOnSave": true 3 | } -------------------------------------------------------------------------------- /examples/plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/CHANGELOG.md -------------------------------------------------------------------------------- /examples/plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/README.md -------------------------------------------------------------------------------- /examples/plugin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/composer.json -------------------------------------------------------------------------------- /examples/plugin/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/composer.lock -------------------------------------------------------------------------------- /examples/plugin/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/docker-compose.yml -------------------------------------------------------------------------------- /examples/plugin/inc/class-wpackio-plugin-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/inc/class-wpackio-plugin-init.php -------------------------------------------------------------------------------- /examples/plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/package.json -------------------------------------------------------------------------------- /examples/plugin/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/postcss.config.js -------------------------------------------------------------------------------- /examples/plugin/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/prettier.config.js -------------------------------------------------------------------------------- /examples/plugin/reactapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/reactapp.gif -------------------------------------------------------------------------------- /examples/plugin/src/app/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/app/bg.jpg -------------------------------------------------------------------------------- /examples/plugin/src/app/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/app/image.png -------------------------------------------------------------------------------- /examples/plugin/src/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/app/index.css -------------------------------------------------------------------------------- /examples/plugin/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/app/index.js -------------------------------------------------------------------------------- /examples/plugin/src/app/mobile.js: -------------------------------------------------------------------------------- 1 | // Auto page load when HMR is not defined 2 | 3 | console.log('Hello Mobile!'); 4 | -------------------------------------------------------------------------------- /examples/plugin/src/app/modules/dynamic.js: -------------------------------------------------------------------------------- 1 | export default function iAmGroot() { 2 | console.log('I am dynamic groot! With Hot reloading!😱🐶'); 3 | } 4 | -------------------------------------------------------------------------------- /examples/plugin/src/app/modules/logger.js: -------------------------------------------------------------------------------- 1 | export default function logger() { 2 | // Automatic Hot Module Replacement 3 | console.log('Load me 🤟🎉💥😜😺'); 4 | } 5 | -------------------------------------------------------------------------------- /examples/plugin/src/app/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/app/style.less -------------------------------------------------------------------------------- /examples/plugin/src/app/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/app/svg.svg -------------------------------------------------------------------------------- /examples/plugin/src/foo/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/foo/bar.js -------------------------------------------------------------------------------- /examples/plugin/src/foo/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/foo/foo.js -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/App.jsx -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/components/App.scss -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/components/Box.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/components/Box.jsx -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/components/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/components/List.jsx -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/components/List.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/components/List.scss -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/components/Todo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/components/Todo.jsx -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/components/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/components/svg.svg -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/index.jsx -------------------------------------------------------------------------------- /examples/plugin/src/reactapp/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/reactapp/index.scss -------------------------------------------------------------------------------- /examples/plugin/src/ts/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/ts/.eslintrc.js -------------------------------------------------------------------------------- /examples/plugin/src/ts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/ts/main.ts -------------------------------------------------------------------------------- /examples/plugin/src/ts/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/src/ts/module.ts -------------------------------------------------------------------------------- /examples/plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/tsconfig.json -------------------------------------------------------------------------------- /examples/plugin/wpackio-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/wpackio-plugin.php -------------------------------------------------------------------------------- /examples/plugin/wpackio.project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/wpackio.project.js -------------------------------------------------------------------------------- /examples/plugin/wpackio.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/wpackio.server.js -------------------------------------------------------------------------------- /examples/plugin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/plugin/yarn.lock -------------------------------------------------------------------------------- /examples/theme/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25%, not dead -------------------------------------------------------------------------------- /examples/theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/.gitignore -------------------------------------------------------------------------------- /examples/theme/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/404.php -------------------------------------------------------------------------------- /examples/theme/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/CHANGELOG.md -------------------------------------------------------------------------------- /examples/theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/LICENSE -------------------------------------------------------------------------------- /examples/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/README.md -------------------------------------------------------------------------------- /examples/theme/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/archive.php -------------------------------------------------------------------------------- /examples/theme/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/comments.php -------------------------------------------------------------------------------- /examples/theme/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/composer.json -------------------------------------------------------------------------------- /examples/theme/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/composer.lock -------------------------------------------------------------------------------- /examples/theme/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/docker-compose.yml -------------------------------------------------------------------------------- /examples/theme/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/footer.php -------------------------------------------------------------------------------- /examples/theme/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/functions.php -------------------------------------------------------------------------------- /examples/theme/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/header.php -------------------------------------------------------------------------------- /examples/theme/inc/custom-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/inc/custom-header.php -------------------------------------------------------------------------------- /examples/theme/inc/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/inc/customizer.php -------------------------------------------------------------------------------- /examples/theme/inc/jetpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/inc/jetpack.php -------------------------------------------------------------------------------- /examples/theme/inc/template-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/inc/template-functions.php -------------------------------------------------------------------------------- /examples/theme/inc/template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/inc/template-tags.php -------------------------------------------------------------------------------- /examples/theme/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/index.php -------------------------------------------------------------------------------- /examples/theme/js/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/js/customizer.js -------------------------------------------------------------------------------- /examples/theme/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/js/navigation.js -------------------------------------------------------------------------------- /examples/theme/js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/js/skip-link-focus-fix.js -------------------------------------------------------------------------------- /examples/theme/languages/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/languages/readme.txt -------------------------------------------------------------------------------- /examples/theme/languages/wpackio-theme.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/languages/wpackio-theme.pot -------------------------------------------------------------------------------- /examples/theme/layouts/content-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/layouts/content-sidebar.css -------------------------------------------------------------------------------- /examples/theme/layouts/sidebar-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/layouts/sidebar-content.css -------------------------------------------------------------------------------- /examples/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/package.json -------------------------------------------------------------------------------- /examples/theme/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/page.php -------------------------------------------------------------------------------- /examples/theme/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/phpcs.xml.dist -------------------------------------------------------------------------------- /examples/theme/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/postcss.config.js -------------------------------------------------------------------------------- /examples/theme/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/readme.txt -------------------------------------------------------------------------------- /examples/theme/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/rtl.css -------------------------------------------------------------------------------- /examples/theme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/screenshot.png -------------------------------------------------------------------------------- /examples/theme/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/search.php -------------------------------------------------------------------------------- /examples/theme/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/sidebar.php -------------------------------------------------------------------------------- /examples/theme/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/single.php -------------------------------------------------------------------------------- /examples/theme/src/single/module.js: -------------------------------------------------------------------------------- 1 | export const foo = 'foo'; 2 | -------------------------------------------------------------------------------- /examples/theme/src/single/single.js: -------------------------------------------------------------------------------- 1 | import foo from './module'; 2 | 3 | console.log('hello!'); 4 | -------------------------------------------------------------------------------- /examples/theme/src/theme/main.js: -------------------------------------------------------------------------------- 1 | import './main.scss'; 2 | 3 | console.log('Hello Theme!!'); 4 | -------------------------------------------------------------------------------- /examples/theme/src/theme/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/src/theme/main.scss -------------------------------------------------------------------------------- /examples/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/style.css -------------------------------------------------------------------------------- /examples/theme/template-parts/content-none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/template-parts/content-none.php -------------------------------------------------------------------------------- /examples/theme/template-parts/content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/template-parts/content-page.php -------------------------------------------------------------------------------- /examples/theme/template-parts/content-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/template-parts/content-search.php -------------------------------------------------------------------------------- /examples/theme/template-parts/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/template-parts/content.php -------------------------------------------------------------------------------- /examples/theme/wpackio.project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/wpackio.project.js -------------------------------------------------------------------------------- /examples/theme/wpackio.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/wpackio.server.js -------------------------------------------------------------------------------- /examples/theme/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/theme/yarn.lock -------------------------------------------------------------------------------- /examples/tryouts/package-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/tryouts/package-empty.json -------------------------------------------------------------------------------- /examples/tryouts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/examples/tryouts/package.json -------------------------------------------------------------------------------- /jest.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/jest.base.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/lerna.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/package.json -------------------------------------------------------------------------------- /packages/babel-preset-base/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/.eslintrc.js -------------------------------------------------------------------------------- /packages/babel-preset-base/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/.npmignore -------------------------------------------------------------------------------- /packages/babel-preset-base/@types/babel-helper-plugin-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/@types/babel-helper-plugin-utils.d.ts -------------------------------------------------------------------------------- /packages/babel-preset-base/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/CHANGELOG.md -------------------------------------------------------------------------------- /packages/babel-preset-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/README.md -------------------------------------------------------------------------------- /packages/babel-preset-base/__mocks__/@babel/helper-plugin-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/__mocks__/@babel/helper-plugin-utils.ts -------------------------------------------------------------------------------- /packages/babel-preset-base/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/babel-preset-base/__tests__/preset.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/__tests__/preset.spec.ts -------------------------------------------------------------------------------- /packages/babel-preset-base/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../../babel.config.js'); 2 | -------------------------------------------------------------------------------- /packages/babel-preset-base/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/jest.config.js -------------------------------------------------------------------------------- /packages/babel-preset-base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/package.json -------------------------------------------------------------------------------- /packages/babel-preset-base/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/src/index.ts -------------------------------------------------------------------------------- /packages/babel-preset-base/src/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/src/preset.ts -------------------------------------------------------------------------------- /packages/babel-preset-base/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/babel-preset-base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/babel-preset-base/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/.eslintrc.js -------------------------------------------------------------------------------- /packages/cli/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/.npmignore -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../../babel.config.js'); 2 | -------------------------------------------------------------------------------- /packages/cli/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/jest.config.js -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/entrypoint/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/.eslintrc.js -------------------------------------------------------------------------------- /packages/entrypoint/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/.npmignore -------------------------------------------------------------------------------- /packages/entrypoint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/CHANGELOG.md -------------------------------------------------------------------------------- /packages/entrypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/README.md -------------------------------------------------------------------------------- /packages/entrypoint/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/entrypoint/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../../babel.config.js'); 2 | -------------------------------------------------------------------------------- /packages/entrypoint/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/jest.config.js -------------------------------------------------------------------------------- /packages/entrypoint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/package.json -------------------------------------------------------------------------------- /packages/entrypoint/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/src/index.ts -------------------------------------------------------------------------------- /packages/entrypoint/src/module.ts: -------------------------------------------------------------------------------- 1 | export const IGNORE = 'ignore'; 2 | -------------------------------------------------------------------------------- /packages/entrypoint/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/entrypoint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/entrypoint/tsconfig.json -------------------------------------------------------------------------------- /packages/eslint-config/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./index'); 2 | -------------------------------------------------------------------------------- /packages/eslint-config/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/.npmignore -------------------------------------------------------------------------------- /packages/eslint-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/babel.config.js -------------------------------------------------------------------------------- /packages/eslint-config/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/config/env.js -------------------------------------------------------------------------------- /packages/eslint-config/config/extends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/config/extends.js -------------------------------------------------------------------------------- /packages/eslint-config/config/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/config/rules.js -------------------------------------------------------------------------------- /packages/eslint-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/index.js -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/eslint-config/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/prettier.config.js -------------------------------------------------------------------------------- /packages/eslint-config/ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/eslint-config/ts.js -------------------------------------------------------------------------------- /packages/scripts/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/.eslintignore -------------------------------------------------------------------------------- /packages/scripts/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/.eslintrc.js -------------------------------------------------------------------------------- /packages/scripts/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/.npmignore -------------------------------------------------------------------------------- /packages/scripts/@types/boxen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/boxen.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/dev-ip.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'dev-ip' { 2 | export default function devIp(): string[] | false; 3 | } 4 | -------------------------------------------------------------------------------- /packages/scripts/@types/extract-css-chunks-webpack-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/extract-css-chunks-webpack-plugin.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/miniCssExtractPlugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/miniCssExtractPlugin.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-dev-utils/WatchMissingNodeModulesPlugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-dev-utils/WatchMissingNodeModulesPlugin.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-dev-utils/clearConsole.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-dev-utils/clearConsole.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-dev-utils/errorOverlayMiddleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-dev-utils/errorOverlayMiddleware.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-dev-utils/formatWebpackMessages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-dev-utils/formatWebpackMessages.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-dev-utils/openBrowser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-dev-utils/openBrowser.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-dev-utils/typescriptFormatter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-dev-utils/typescriptFormatter.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/react-error-overlay/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/react-error-overlay/index.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/terminal-link.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/terminal-link.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/time-fix-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/time-fix-plugin.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/webpack-dashboard/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/webpack-dashboard/index.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/webpack-dashboard/plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/webpack-dashboard/plugin.d.ts -------------------------------------------------------------------------------- /packages/scripts/@types/webpack-log.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/@types/webpack-log.d.ts -------------------------------------------------------------------------------- /packages/scripts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/CHANGELOG.md -------------------------------------------------------------------------------- /packages/scripts/PREFACE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/PREFACE.md -------------------------------------------------------------------------------- /packages/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/README.md -------------------------------------------------------------------------------- /packages/scripts/__tests__/config/CreateWebpackConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/config/CreateWebpackConfig.spec.ts -------------------------------------------------------------------------------- /packages/scripts/__tests__/config/WebpackConfigHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/config/WebpackConfigHelper.spec.ts -------------------------------------------------------------------------------- /packages/scripts/__tests__/config/__snapshots__/WebpackConfigHelper.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/config/__snapshots__/WebpackConfigHelper.spec.ts.snap -------------------------------------------------------------------------------- /packages/scripts/__tests__/config/getProjectAndServerConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/config/getProjectAndServerConfig.spec.ts -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/dummyConfigRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/helpers/dummyConfigRight.js -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/dummyConfigWrong.js: -------------------------------------------------------------------------------- 1 | module.exports = () => {}; 2 | -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/dummyPCRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/helpers/dummyPCRight.js -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/dummyPCWrong.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // No appName 3 | files: [], 4 | }; 5 | -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/dummySCRight.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | host: undefined, 3 | proxy: 'http://localhost', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/dummySCWrong.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | host: undefined, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/testConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/helpers/testConfig.ts -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/helpers/testUtils.ts -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/wpackio.project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/helpers/wpackio.project.js -------------------------------------------------------------------------------- /packages/scripts/__tests__/helpers/wpackio.server.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | host: undefined, 3 | proxy: 'http://localhost', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/scripts/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/__tests__/index.spec.ts -------------------------------------------------------------------------------- /packages/scripts/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../../babel.config.js'); 2 | -------------------------------------------------------------------------------- /packages/scripts/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/jest.config.js -------------------------------------------------------------------------------- /packages/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/package.json -------------------------------------------------------------------------------- /packages/scripts/src/bin/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/bootstrap.ts -------------------------------------------------------------------------------- /packages/scripts/src/bin/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/build.ts -------------------------------------------------------------------------------- /packages/scripts/src/bin/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/dev.ts -------------------------------------------------------------------------------- /packages/scripts/src/bin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/index.ts -------------------------------------------------------------------------------- /packages/scripts/src/bin/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/pack.ts -------------------------------------------------------------------------------- /packages/scripts/src/bin/serve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/serve.ts -------------------------------------------------------------------------------- /packages/scripts/src/bin/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bin/utils.ts -------------------------------------------------------------------------------- /packages/scripts/src/bs/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/bs/plugin.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/CreateWebpackConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/CreateWebpackConfig.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/WebpackConfigHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/WebpackConfigHelper.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/babelConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/babelConfig.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/getProjectAndServerConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/getProjectAndServerConfig.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/loaderHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/loaderHelpers.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/project.config.default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/project.config.default.ts -------------------------------------------------------------------------------- /packages/scripts/src/config/server.config.default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/config/server.config.default.ts -------------------------------------------------------------------------------- /packages/scripts/src/dev-utils/WatchMissingNodeModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/dev-utils/WatchMissingNodeModules.ts -------------------------------------------------------------------------------- /packages/scripts/src/dev-utils/clearConsole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/dev-utils/clearConsole.ts -------------------------------------------------------------------------------- /packages/scripts/src/dev-utils/formatWebpackMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/dev-utils/formatWebpackMessages.ts -------------------------------------------------------------------------------- /packages/scripts/src/dev-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/dev-utils/index.ts -------------------------------------------------------------------------------- /packages/scripts/src/dev-utils/ops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/dev-utils/ops.ts -------------------------------------------------------------------------------- /packages/scripts/src/dev-utils/typescriptFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/dev-utils/typescriptFormatter.ts -------------------------------------------------------------------------------- /packages/scripts/src/errors/WpackioError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/errors/WpackioError.ts -------------------------------------------------------------------------------- /packages/scripts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/index.ts -------------------------------------------------------------------------------- /packages/scripts/src/plugins/DependencyExtractionWebpackPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/plugins/DependencyExtractionWebpackPlugin.ts -------------------------------------------------------------------------------- /packages/scripts/src/scripts/Bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/scripts/Bootstrap.ts -------------------------------------------------------------------------------- /packages/scripts/src/scripts/Build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/scripts/Build.ts -------------------------------------------------------------------------------- /packages/scripts/src/scripts/Pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/scripts/Pack.ts -------------------------------------------------------------------------------- /packages/scripts/src/scripts/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/src/scripts/Server.ts -------------------------------------------------------------------------------- /packages/scripts/templates/wpackio.project.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/templates/wpackio.project.js.hbs -------------------------------------------------------------------------------- /packages/scripts/templates/wpackio.server.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/templates/wpackio.server.js.hbs -------------------------------------------------------------------------------- /packages/scripts/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/packages/scripts/tsconfig.json -------------------------------------------------------------------------------- /packages/scripts/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["../../tslint.json"] 3 | } 4 | -------------------------------------------------------------------------------- /plop-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/README.md -------------------------------------------------------------------------------- /plop-templates/package/.eslintignore.hbs: -------------------------------------------------------------------------------- 1 | @types/** 2 | -------------------------------------------------------------------------------- /plop-templates/package/.eslintrc.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/package/.eslintrc.js.hbs -------------------------------------------------------------------------------- /plop-templates/package/.npmignore.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/package/.npmignore.hbs -------------------------------------------------------------------------------- /plop-templates/package/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/package/README.md.hbs -------------------------------------------------------------------------------- /plop-templates/package/babel.config.js.hbs: -------------------------------------------------------------------------------- 1 | module.exports = require('../../babel.config.js'); 2 | -------------------------------------------------------------------------------- /plop-templates/package/jest.config.js.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/package/jest.config.js.hbs -------------------------------------------------------------------------------- /plop-templates/package/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/package/package.json.hbs -------------------------------------------------------------------------------- /plop-templates/package/tsconfig.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plop-templates/package/tsconfig.json.hbs -------------------------------------------------------------------------------- /plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/plopfile.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/prettier.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/renovate.json -------------------------------------------------------------------------------- /site/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/.eslintrc -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/.prettierignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | public/ 3 | package.json 4 | -------------------------------------------------------------------------------- /site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/LICENSE -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/README.md -------------------------------------------------------------------------------- /site/docs/apis/node-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/apis/node-api.md -------------------------------------------------------------------------------- /site/docs/apis/php-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/apis/php-api.md -------------------------------------------------------------------------------- /site/docs/apis/project-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/apis/project-configuration.md -------------------------------------------------------------------------------- /site/docs/apis/server-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/apis/server-configuration.md -------------------------------------------------------------------------------- /site/docs/commands/wpackio-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/commands/wpackio-cli.md -------------------------------------------------------------------------------- /site/docs/commands/wpackio-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/commands/wpackio-scripts.md -------------------------------------------------------------------------------- /site/docs/concepts/how-everything-works-together.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/concepts/how-everything-works-together.md -------------------------------------------------------------------------------- /site/docs/concepts/how-publicpath-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/concepts/how-publicpath-works.md -------------------------------------------------------------------------------- /site/docs/guides/adding-custom-env-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/guides/adding-custom-env-variables.md -------------------------------------------------------------------------------- /site/docs/guides/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/guides/changelog.md -------------------------------------------------------------------------------- /site/docs/guides/creating-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/guides/creating-production.md -------------------------------------------------------------------------------- /site/docs/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/guides/getting-started.md -------------------------------------------------------------------------------- /site/docs/guides/start-development-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/guides/start-development-server.md -------------------------------------------------------------------------------- /site/docs/guides/using-wpackio-enqueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/guides/using-wpackio-enqueue.md -------------------------------------------------------------------------------- /site/docs/tutorials/adding-custom-babel-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/adding-custom-babel-config.md -------------------------------------------------------------------------------- /site/docs/tutorials/adding-typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/adding-typescript.md -------------------------------------------------------------------------------- /site/docs/tutorials/breaking-changes-v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/breaking-changes-v6.md -------------------------------------------------------------------------------- /site/docs/tutorials/customizer-and-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/customizer-and-rest.md -------------------------------------------------------------------------------- /site/docs/tutorials/extending-webpack-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/extending-webpack-config.md -------------------------------------------------------------------------------- /site/docs/tutorials/level-up-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/level-up-javascript.md -------------------------------------------------------------------------------- /site/docs/tutorials/localize-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/localize-script.md -------------------------------------------------------------------------------- /site/docs/tutorials/manual-project-bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/manual-project-bootstrap.md -------------------------------------------------------------------------------- /site/docs/tutorials/minimize-css-with-cssnano.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/minimize-css-with-cssnano.md -------------------------------------------------------------------------------- /site/docs/tutorials/react-hmr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/react-hmr.gif -------------------------------------------------------------------------------- /site/docs/tutorials/starting-selective-entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/starting-selective-entries.md -------------------------------------------------------------------------------- /site/docs/tutorials/updating-wpackio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/updating-wpackio.md -------------------------------------------------------------------------------- /site/docs/tutorials/using-file-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/using-file-loader.md -------------------------------------------------------------------------------- /site/docs/tutorials/using-jest-babel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/using-jest-babel.md -------------------------------------------------------------------------------- /site/docs/tutorials/using-react-hot-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/using-react-hot-loader.md -------------------------------------------------------------------------------- /site/docs/tutorials/using-various-svg-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/docs/tutorials/using-various-svg-loader.md -------------------------------------------------------------------------------- /site/frontpage/missions/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/missions/contribute.md -------------------------------------------------------------------------------- /site/frontpage/missions/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/missions/how-it-works.md -------------------------------------------------------------------------------- /site/frontpage/missions/what-can-we-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/missions/what-can-we-do.md -------------------------------------------------------------------------------- /site/frontpage/missions/whats-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/missions/whats-new.md -------------------------------------------------------------------------------- /site/frontpage/steps/01-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/01-cli.gif -------------------------------------------------------------------------------- /site/frontpage/steps/01-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/01-cli.md -------------------------------------------------------------------------------- /site/frontpage/steps/02-bootstrap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/02-bootstrap.gif -------------------------------------------------------------------------------- /site/frontpage/steps/02-bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/02-bootstrap.md -------------------------------------------------------------------------------- /site/frontpage/steps/03-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/03-config.md -------------------------------------------------------------------------------- /site/frontpage/steps/03-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/03-config.png -------------------------------------------------------------------------------- /site/frontpage/steps/04-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/04-php.md -------------------------------------------------------------------------------- /site/frontpage/steps/04-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/04-php.png -------------------------------------------------------------------------------- /site/frontpage/steps/05-start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/05-start.gif -------------------------------------------------------------------------------- /site/frontpage/steps/05-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/05-start.md -------------------------------------------------------------------------------- /site/frontpage/steps/06-build.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/06-build.gif -------------------------------------------------------------------------------- /site/frontpage/steps/06-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/06-build.md -------------------------------------------------------------------------------- /site/frontpage/steps/07-archive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/07-archive.gif -------------------------------------------------------------------------------- /site/frontpage/steps/07-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/frontpage/steps/07-archive.md -------------------------------------------------------------------------------- /site/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/gatsby-browser.js -------------------------------------------------------------------------------- /site/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/gatsby-config.js -------------------------------------------------------------------------------- /site/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/gatsby-node.js -------------------------------------------------------------------------------- /site/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/gatsby-ssr.js -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/package.json -------------------------------------------------------------------------------- /site/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/prettier.config.js -------------------------------------------------------------------------------- /site/src/components/WPEFormPromo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/WPEFormPromo/index.js -------------------------------------------------------------------------------- /site/src/components/WPEFormPromo/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/WPEFormPromo/index.scss -------------------------------------------------------------------------------- /site/src/components/bulma.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/bulma.scss -------------------------------------------------------------------------------- /site/src/components/dank-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/dank-mono.css -------------------------------------------------------------------------------- /site/src/components/docpage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/docpage/index.js -------------------------------------------------------------------------------- /site/src/components/docpage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/docpage/index.scss -------------------------------------------------------------------------------- /site/src/components/docpage/sidebarnav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/docpage/sidebarnav/index.js -------------------------------------------------------------------------------- /site/src/components/docpage/sidebarnav/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/docpage/sidebarnav/index.scss -------------------------------------------------------------------------------- /site/src/components/docsearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/docsearch/index.js -------------------------------------------------------------------------------- /site/src/components/docsearch/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/docsearch/index.scss -------------------------------------------------------------------------------- /site/src/components/feature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/feature/index.js -------------------------------------------------------------------------------- /site/src/components/feature/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/feature/index.scss -------------------------------------------------------------------------------- /site/src/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/footer/index.js -------------------------------------------------------------------------------- /site/src/components/footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/footer/index.scss -------------------------------------------------------------------------------- /site/src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/header.js -------------------------------------------------------------------------------- /site/src/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/header.scss -------------------------------------------------------------------------------- /site/src/components/hero/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/hero/index.js -------------------------------------------------------------------------------- /site/src/components/hero/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/hero/index.scss -------------------------------------------------------------------------------- /site/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/layout.js -------------------------------------------------------------------------------- /site/src/components/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/layout.scss -------------------------------------------------------------------------------- /site/src/components/steps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/steps/index.js -------------------------------------------------------------------------------- /site/src/components/steps/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/steps/index.scss -------------------------------------------------------------------------------- /site/src/components/svgs/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/chevron.svg -------------------------------------------------------------------------------- /site/src/components/svgs/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/cloud.svg -------------------------------------------------------------------------------- /site/src/components/svgs/dependable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/dependable.svg -------------------------------------------------------------------------------- /site/src/components/svgs/development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/development.svg -------------------------------------------------------------------------------- /site/src/components/svgs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/github.svg -------------------------------------------------------------------------------- /site/src/components/svgs/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/magnifier.svg -------------------------------------------------------------------------------- /site/src/components/svgs/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/menu.svg -------------------------------------------------------------------------------- /site/src/components/svgs/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/twitter.svg -------------------------------------------------------------------------------- /site/src/components/svgs/wpackio-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/wpackio-symbol.svg -------------------------------------------------------------------------------- /site/src/components/svgs/wpackio-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/svgs/wpackio-text.svg -------------------------------------------------------------------------------- /site/src/components/window/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/window/index.js -------------------------------------------------------------------------------- /site/src/components/window/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/window/index.scss -------------------------------------------------------------------------------- /site/src/components/wpackio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/components/wpackio/index.js -------------------------------------------------------------------------------- /site/src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/images/favicon.png -------------------------------------------------------------------------------- /site/src/images/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/images/feature.png -------------------------------------------------------------------------------- /site/src/images/wpackio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/images/wpackio-logo.png -------------------------------------------------------------------------------- /site/src/images/wpackio-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/images/wpackio-symbol.svg -------------------------------------------------------------------------------- /site/src/images/wpackio-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/images/wpackio-text.svg -------------------------------------------------------------------------------- /site/src/images/wpeform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/images/wpeform.svg -------------------------------------------------------------------------------- /site/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/pages/404.js -------------------------------------------------------------------------------- /site/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/pages/index.js -------------------------------------------------------------------------------- /site/src/pages/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/pages/index.scss -------------------------------------------------------------------------------- /site/src/templates/docRootTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/templates/docRootTemplate.js -------------------------------------------------------------------------------- /site/src/templates/docTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/templates/docTemplate.js -------------------------------------------------------------------------------- /site/src/utils/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/utils/background.js -------------------------------------------------------------------------------- /site/src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/src/utils/typography.js -------------------------------------------------------------------------------- /site/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/site/yarn.lock -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swashata/wp-webpack-script/HEAD/yarn.lock --------------------------------------------------------------------------------