├── .gitignore ├── .jshintrc ├── .npmignore ├── Gruntfile.js ├── README.md ├── package.json ├── tasks └── grunt-shopify-theme.js └── test └── src ├── assets ├── shop.js.liquid └── style.css.liquid ├── config ├── settings.html └── settings_data.json ├── layout └── theme.liquid ├── snippets ├── collection-grid-item.liquid ├── collection-listing.liquid ├── open-graph-tags.liquid └── product-grid-item.liquid └── templates ├── 404.liquid ├── article.liquid ├── blog.liquid ├── cart.liquid ├── collection.liquid ├── index.liquid ├── list-collections.liquid ├── page.liquid ├── product.liquid └── search.liquid /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test/theme 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/package.json -------------------------------------------------------------------------------- /tasks/grunt-shopify-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/tasks/grunt-shopify-theme.js -------------------------------------------------------------------------------- /test/src/assets/shop.js.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/assets/shop.js.liquid -------------------------------------------------------------------------------- /test/src/assets/style.css.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/assets/style.css.liquid -------------------------------------------------------------------------------- /test/src/config/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/config/settings.html -------------------------------------------------------------------------------- /test/src/config/settings_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/config/settings_data.json -------------------------------------------------------------------------------- /test/src/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/layout/theme.liquid -------------------------------------------------------------------------------- /test/src/snippets/collection-grid-item.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/snippets/collection-grid-item.liquid -------------------------------------------------------------------------------- /test/src/snippets/collection-listing.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/snippets/collection-listing.liquid -------------------------------------------------------------------------------- /test/src/snippets/open-graph-tags.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/snippets/open-graph-tags.liquid -------------------------------------------------------------------------------- /test/src/snippets/product-grid-item.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/snippets/product-grid-item.liquid -------------------------------------------------------------------------------- /test/src/templates/404.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/404.liquid -------------------------------------------------------------------------------- /test/src/templates/article.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/article.liquid -------------------------------------------------------------------------------- /test/src/templates/blog.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/blog.liquid -------------------------------------------------------------------------------- /test/src/templates/cart.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/cart.liquid -------------------------------------------------------------------------------- /test/src/templates/collection.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/collection.liquid -------------------------------------------------------------------------------- /test/src/templates/index.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/index.liquid -------------------------------------------------------------------------------- /test/src/templates/list-collections.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/list-collections.liquid -------------------------------------------------------------------------------- /test/src/templates/page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/page.liquid -------------------------------------------------------------------------------- /test/src/templates/product.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/product.liquid -------------------------------------------------------------------------------- /test/src/templates/search.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburnette/grunt-shopify-theme/HEAD/test/src/templates/search.liquid --------------------------------------------------------------------------------