├── .bin ├── packer ├── packer.cmd └── packer.ps1 ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── combine.yml │ ├── node.js.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── changelog ├── conventional-changelog.js ├── conventional-recommended-bump.js ├── index.js ├── parser-opts.js ├── templates │ ├── commit.hbs │ ├── footer.hbs │ ├── header.hbs │ └── template.hbs └── writer-opts.js ├── cli ├── __tests__ │ ├── __snapshots__ │ │ ├── init.test.js.snap │ │ └── ssl.test.js.snap │ ├── fixtures │ │ ├── packer-blank-theme-1.0.13.json │ │ └── packer-blank-theme-1.0.13.zip │ ├── help.test.js │ ├── init.test.js │ └── ssl.test.js ├── commands │ ├── build.js │ ├── deploy.js │ ├── format.js │ ├── help.js │ ├── init.js │ ├── lint.js │ ├── ssl.js │ ├── start.js │ ├── theme.js │ └── zip.js └── index.js ├── docs ├── .gitignore ├── babel.config.js ├── docs │ ├── commands.md │ ├── config │ │ ├── environment.md │ │ ├── files.md │ │ ├── settings.md │ │ └── webpack.md │ ├── features │ │ ├── admin-api.md │ │ ├── bundles.md │ │ ├── dotenv.md │ │ └── liquid-styles.md │ ├── install.md │ ├── overview.md │ ├── quick-start.mdx │ ├── ssl.mdx │ └── structure.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── styles.module.css ├── static │ ├── .nojekyll │ └── img │ │ ├── custom.svg │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── logos │ │ ├── babel.png │ │ ├── postcss.svg │ │ ├── sass.svg │ │ ├── shopify.svg │ │ └── webpack.svg │ │ ├── rocket.svg │ │ ├── ssl_1.png │ │ ├── ssl_2.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree.svg │ │ ├── webpack-bundle-analyzer.png │ │ └── webpack.svg └── yarn.lock ├── jest.config.js ├── package.json ├── packer.schema.js ├── src ├── config │ ├── README.md │ ├── __tests__ │ │ ├── fixtures │ │ │ ├── packer.config.js │ │ │ └── packerWithError.config.js │ │ └── index.test.js │ ├── common-paths.js │ └── index.js ├── env │ ├── index.js │ └── packer-env.schema.js ├── linters │ ├── eslint │ │ └── index.js │ ├── prettier │ │ └── index.js │ └── stylelint │ │ └── index.js ├── server │ ├── app.js │ ├── asset │ │ └── index.js │ ├── client.js │ ├── dev │ │ └── index.js │ ├── is-hot-update-file.js │ ├── prompts │ │ ├── continue-if-published-theme.js │ │ └── skip-settings-data.js │ ├── ssl.js │ └── sync.js ├── theme │ ├── api.js │ └── index.js ├── utilities │ ├── clear-console.js │ ├── get-available-port-series.js │ ├── get-chunk-name.js │ ├── get-layout-entrypoints.js │ └── get-template-entrypoints.js └── webpack │ ├── config │ ├── analyze.config.js │ ├── dev.config.js │ └── prod.config.js │ ├── custom.js │ ├── hmr-alamo-loader.js │ ├── hot-client.js │ ├── include-liquid-styles.js │ ├── parts │ ├── assets.js │ ├── copy.js │ ├── core.js │ ├── css.js │ ├── env.js │ ├── liquid-styles.js │ ├── optimization.js │ └── scss.js │ ├── script-tags.html │ └── style-tags.html ├── test.sh ├── tests ├── node14 │ └── Dockerfile └── node15 │ └── Dockerfile └── yarn.lock /.bin/packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.bin/packer -------------------------------------------------------------------------------- /.bin/packer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.bin/packer.cmd -------------------------------------------------------------------------------- /.bin/packer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.bin/packer.ps1 -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: hayes0724 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/combine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/workflows/combine.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/README.md -------------------------------------------------------------------------------- /changelog/conventional-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/conventional-changelog.js -------------------------------------------------------------------------------- /changelog/conventional-recommended-bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/conventional-recommended-bump.js -------------------------------------------------------------------------------- /changelog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/index.js -------------------------------------------------------------------------------- /changelog/parser-opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/parser-opts.js -------------------------------------------------------------------------------- /changelog/templates/commit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/templates/commit.hbs -------------------------------------------------------------------------------- /changelog/templates/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/templates/footer.hbs -------------------------------------------------------------------------------- /changelog/templates/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/templates/header.hbs -------------------------------------------------------------------------------- /changelog/templates/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/templates/template.hbs -------------------------------------------------------------------------------- /changelog/writer-opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/changelog/writer-opts.js -------------------------------------------------------------------------------- /cli/__tests__/__snapshots__/init.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/__snapshots__/init.test.js.snap -------------------------------------------------------------------------------- /cli/__tests__/__snapshots__/ssl.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/__snapshots__/ssl.test.js.snap -------------------------------------------------------------------------------- /cli/__tests__/fixtures/packer-blank-theme-1.0.13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/fixtures/packer-blank-theme-1.0.13.json -------------------------------------------------------------------------------- /cli/__tests__/fixtures/packer-blank-theme-1.0.13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/fixtures/packer-blank-theme-1.0.13.zip -------------------------------------------------------------------------------- /cli/__tests__/help.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/help.test.js -------------------------------------------------------------------------------- /cli/__tests__/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/init.test.js -------------------------------------------------------------------------------- /cli/__tests__/ssl.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/__tests__/ssl.test.js -------------------------------------------------------------------------------- /cli/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/build.js -------------------------------------------------------------------------------- /cli/commands/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/deploy.js -------------------------------------------------------------------------------- /cli/commands/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/format.js -------------------------------------------------------------------------------- /cli/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/help.js -------------------------------------------------------------------------------- /cli/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/init.js -------------------------------------------------------------------------------- /cli/commands/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/lint.js -------------------------------------------------------------------------------- /cli/commands/ssl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/ssl.js -------------------------------------------------------------------------------- /cli/commands/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/start.js -------------------------------------------------------------------------------- /cli/commands/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/theme.js -------------------------------------------------------------------------------- /cli/commands/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/commands/zip.js -------------------------------------------------------------------------------- /cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/cli/index.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/commands.md -------------------------------------------------------------------------------- /docs/docs/config/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/config/environment.md -------------------------------------------------------------------------------- /docs/docs/config/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/config/files.md -------------------------------------------------------------------------------- /docs/docs/config/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/config/settings.md -------------------------------------------------------------------------------- /docs/docs/config/webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/config/webpack.md -------------------------------------------------------------------------------- /docs/docs/features/admin-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/features/admin-api.md -------------------------------------------------------------------------------- /docs/docs/features/bundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/features/bundles.md -------------------------------------------------------------------------------- /docs/docs/features/dotenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/features/dotenv.md -------------------------------------------------------------------------------- /docs/docs/features/liquid-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/features/liquid-styles.md -------------------------------------------------------------------------------- /docs/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/install.md -------------------------------------------------------------------------------- /docs/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/overview.md -------------------------------------------------------------------------------- /docs/docs/quick-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/quick-start.mdx -------------------------------------------------------------------------------- /docs/docs/ssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/ssl.mdx -------------------------------------------------------------------------------- /docs/docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docs/structure.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/src/pages/styles.module.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/custom.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/logos/babel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/logos/babel.png -------------------------------------------------------------------------------- /docs/static/img/logos/postcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/logos/postcss.svg -------------------------------------------------------------------------------- /docs/static/img/logos/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/logos/sass.svg -------------------------------------------------------------------------------- /docs/static/img/logos/shopify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/logos/shopify.svg -------------------------------------------------------------------------------- /docs/static/img/logos/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/logos/webpack.svg -------------------------------------------------------------------------------- /docs/static/img/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/rocket.svg -------------------------------------------------------------------------------- /docs/static/img/ssl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/ssl_1.png -------------------------------------------------------------------------------- /docs/static/img/ssl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/ssl_2.png -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/static/img/webpack-bundle-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/webpack-bundle-analyzer.png -------------------------------------------------------------------------------- /docs/static/img/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/static/img/webpack.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/package.json -------------------------------------------------------------------------------- /packer.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/packer.schema.js -------------------------------------------------------------------------------- /src/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/config/README.md -------------------------------------------------------------------------------- /src/config/__tests__/fixtures/packer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/config/__tests__/fixtures/packer.config.js -------------------------------------------------------------------------------- /src/config/__tests__/fixtures/packerWithError.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/config/__tests__/fixtures/packerWithError.config.js -------------------------------------------------------------------------------- /src/config/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/config/__tests__/index.test.js -------------------------------------------------------------------------------- /src/config/common-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/config/common-paths.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/env/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/env/index.js -------------------------------------------------------------------------------- /src/env/packer-env.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/env/packer-env.schema.js -------------------------------------------------------------------------------- /src/linters/eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/linters/eslint/index.js -------------------------------------------------------------------------------- /src/linters/prettier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/linters/prettier/index.js -------------------------------------------------------------------------------- /src/linters/stylelint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/linters/stylelint/index.js -------------------------------------------------------------------------------- /src/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/app.js -------------------------------------------------------------------------------- /src/server/asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/asset/index.js -------------------------------------------------------------------------------- /src/server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/client.js -------------------------------------------------------------------------------- /src/server/dev/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/dev/index.js -------------------------------------------------------------------------------- /src/server/is-hot-update-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/is-hot-update-file.js -------------------------------------------------------------------------------- /src/server/prompts/continue-if-published-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/prompts/continue-if-published-theme.js -------------------------------------------------------------------------------- /src/server/prompts/skip-settings-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/prompts/skip-settings-data.js -------------------------------------------------------------------------------- /src/server/ssl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/ssl.js -------------------------------------------------------------------------------- /src/server/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/server/sync.js -------------------------------------------------------------------------------- /src/theme/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/theme/api.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/utilities/clear-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/utilities/clear-console.js -------------------------------------------------------------------------------- /src/utilities/get-available-port-series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/utilities/get-available-port-series.js -------------------------------------------------------------------------------- /src/utilities/get-chunk-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/utilities/get-chunk-name.js -------------------------------------------------------------------------------- /src/utilities/get-layout-entrypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/utilities/get-layout-entrypoints.js -------------------------------------------------------------------------------- /src/utilities/get-template-entrypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/utilities/get-template-entrypoints.js -------------------------------------------------------------------------------- /src/webpack/config/analyze.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/config/analyze.config.js -------------------------------------------------------------------------------- /src/webpack/config/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/config/dev.config.js -------------------------------------------------------------------------------- /src/webpack/config/prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/config/prod.config.js -------------------------------------------------------------------------------- /src/webpack/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/custom.js -------------------------------------------------------------------------------- /src/webpack/hmr-alamo-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/hmr-alamo-loader.js -------------------------------------------------------------------------------- /src/webpack/hot-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/hot-client.js -------------------------------------------------------------------------------- /src/webpack/include-liquid-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/include-liquid-styles.js -------------------------------------------------------------------------------- /src/webpack/parts/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/assets.js -------------------------------------------------------------------------------- /src/webpack/parts/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/copy.js -------------------------------------------------------------------------------- /src/webpack/parts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/core.js -------------------------------------------------------------------------------- /src/webpack/parts/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/css.js -------------------------------------------------------------------------------- /src/webpack/parts/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/env.js -------------------------------------------------------------------------------- /src/webpack/parts/liquid-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/liquid-styles.js -------------------------------------------------------------------------------- /src/webpack/parts/optimization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/optimization.js -------------------------------------------------------------------------------- /src/webpack/parts/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/parts/scss.js -------------------------------------------------------------------------------- /src/webpack/script-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/script-tags.html -------------------------------------------------------------------------------- /src/webpack/style-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/src/webpack/style-tags.html -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/test.sh -------------------------------------------------------------------------------- /tests/node14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/tests/node14/Dockerfile -------------------------------------------------------------------------------- /tests/node15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/tests/node15/Dockerfile -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayes0724/shopify-packer/HEAD/yarn.lock --------------------------------------------------------------------------------