├── .config ├── .browserslistrc ├── .eslintrc.js ├── .stylelintrc.js └── webpack │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── img │ ├── banner.svg │ ├── button-youtube-quick-start.svg │ ├── ecosystem.svg │ └── logo.svg ├── .gitignore ├── .shopifyignore ├── LICENSE ├── README.md ├── _scripts └── main.js ├── _styles └── main.css ├── config ├── settings_data.json └── settings_schema.json ├── layout └── theme.liquid ├── locales ├── en.default.json └── en.default.schema.json ├── package.json ├── postcss.config.js ├── sections ├── example-component.css ├── example-component.js └── example-component.liquid ├── snippets ├── example-component.css ├── example-component.js └── example-component.liquid ├── tailwind.config.js ├── templates └── index.json └── yarn.lock /.config/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.config/.browserslistrc -------------------------------------------------------------------------------- /.config/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.config/.eslintrc.js -------------------------------------------------------------------------------- /.config/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.config/.stylelintrc.js -------------------------------------------------------------------------------- /.config/webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.config/webpack/webpack.common.js -------------------------------------------------------------------------------- /.config/webpack/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.config/webpack/webpack.dev.js -------------------------------------------------------------------------------- /.config/webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.config/webpack/webpack.prod.js -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/img/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/img/banner.svg -------------------------------------------------------------------------------- /.github/img/button-youtube-quick-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/img/button-youtube-quick-start.svg -------------------------------------------------------------------------------- /.github/img/ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/img/ecosystem.svg -------------------------------------------------------------------------------- /.github/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.github/img/logo.svg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.gitignore -------------------------------------------------------------------------------- /.shopifyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/.shopifyignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/README.md -------------------------------------------------------------------------------- /_scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/_scripts/main.js -------------------------------------------------------------------------------- /_styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/_styles/main.css -------------------------------------------------------------------------------- /config/settings_data.json: -------------------------------------------------------------------------------- 1 | { 2 | "current": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/config/settings_schema.json -------------------------------------------------------------------------------- /layout/theme.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locales/en.default.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /locales/en.default.schema.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /sections/example-component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/sections/example-component.css -------------------------------------------------------------------------------- /sections/example-component.js: -------------------------------------------------------------------------------- 1 | // this file will be auto imported into assets/index.js -------------------------------------------------------------------------------- /sections/example-component.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/example-component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/snippets/example-component.css -------------------------------------------------------------------------------- /snippets/example-component.js: -------------------------------------------------------------------------------- 1 | // this file will be auto imported into assets/index.js -------------------------------------------------------------------------------- /snippets/example-component.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/templates/index.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electricmaybe/shopify-trafo/HEAD/yarn.lock --------------------------------------------------------------------------------