Skip to content

Commit

Permalink
minor edit - see CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
unclehowell committed Apr 15, 2024
1 parent 565da7e commit cd7d6c1
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

## [0.0.1-rtw.15] - Q2/2024
Apr-15 - Left out the hidden files in the new 11ty-store. Re-instated them, now Netlify should build the store ok
Apr-15 - Moved /static/11ty-store/ to /static/11ty-store.old and placed a shopify,hygraph website in a new 11ty-store directory
Apr-05 - Added /static/11ty-store/ - Testing Headless CMS Shopify solution
Apr-04 - Added a store
Expand Down
5 changes: 5 additions & 0 deletions static/11ty-store/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
node_modules
bin
*.d.ts
dist
11 changes: 11 additions & 0 deletions static/11ty-store/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* @type {import("@types/eslint").Linter.BaseConfig}
*/
module.exports = {
extends: ['@remix-run/eslint-config', 'plugin:hydrogen/recommended'],
rules: {
'hydrogen/prefer-image-component': 'off',
'no-useless-escape': 'off',
'no-case-declarations': 'off',
},
};
8 changes: 8 additions & 0 deletions static/11ty-store/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
/.cache
/build
/dist
/public/build
/.mf
.env
.shopify
12 changes: 12 additions & 0 deletions static/11ty-store/.graphqlrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
projects:
default:
schema: 'node_modules/@shopify/hydrogen/storefront.schema.json'
documents:
- '!*.d.ts'
- '*.{ts,tsx,js,jsx}'
- 'app/**/*.{ts,tsx,js,jsx}'
- '!app/graphql/**/*.{ts,tsx,js,jsx}'
customer-account:
schema: 'node_modules/@shopify/hydrogen/customer-account.schema.json'
documents:
- 'app/graphql/customer-account/**/*.{ts,tsx,js,jsx}'

0 comments on commit cd7d6c1

Please sign in to comment.