Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
chore(release): v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Paltera committed Apr 4, 2022
1 parent 98e9d64 commit 630c256
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
8 changes: 5 additions & 3 deletions docs/guide/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ module.exports = {
domain: 'YOUR SHOPIFY STORE DOMAIN',
storefrontAccessToken: 'SHOPIFY STORE API KEY'
},
routes: {
blogs: '/blogs',
cms: {
blogs: '/blogs',
articles: '/articles'
},
currency: 'USD',
Expand All @@ -51,10 +51,12 @@ module.exports = {
- `domain` - link to your Shopify storefront.
- `storefrontAccessToken` - Shopify private app API key. Visit [Shopify documentation](https://shopify.dev/tutorials/generate-api-credentials) for more details about creating an API key

### `routes`
### `cms`

- `blogs` - prefix url for your blogs content defaults to `/blogs`
- Which results to https://yourdomain.com/blogs/:blog-handle
- `articles` - prefix url for your articles content defaults to `/articles`
- Which results to https://yourdomain.com/articles/:article-handle

### `acceptLanguage`

Expand Down
1 change: 1 addition & 0 deletions docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ Replace ```SHOPIFY STORE DOMAIN``` and ```SHOPIFY STORE ACCESS TOKEN``` with you
```bash
SHOPIFY_STOREFRONT_TOKEN=<SHOPIFY_ACCESS_TOKEN>
SHOPIFY_DOMAIN=<SHOPIFY_DOMAIN> # example: vsf-next-pwa.myshopify.com
BASE_URL=<API_DOMAIN> # example: localhost:3001
```
4 changes: 2 additions & 2 deletions packages/api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/shopify-api",
"version": "1.0.20",
"version": "1.1.0",
"sideEffects": false,
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
Expand All @@ -14,7 +14,7 @@
},
"dependencies": {
"@nuxtjs/composition-api": "^0.30.0",
"@vue-storefront/shopify-apollo": "^1.0.20",
"@vue-storefront/shopify-apollo": "^1.1.0",
"@vue-storefront/core": "2.5.6",
"graphql": "^16.0.1",
"shopify-buy": "~2.14.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/shopify-apollo",
"version": "1.0.20",
"version": "1.1.0",
"description": "Vue Storefront Shopify Apollo Client",
"keywords": [
"apollo",
Expand Down
6 changes: 3 additions & 3 deletions packages/composables/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/shopify",
"version": "1.0.20",
"version": "1.1.0",
"sideEffects": false,
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
Expand All @@ -14,8 +14,8 @@
"dependencies": {
"@types/js-cookie": "^2.2.6",
"@vue-storefront/core": "2.5.6",
"@vue-storefront/shopify-api": "^1.0.20",
"@vue-storefront/shopify-apollo": "^1.0.20"
"@vue-storefront/shopify-api": "^1.1.0",
"@vue-storefront/shopify-apollo": "^1.1.0"
},
"peerDependencies": {
"@nuxtjs/composition-api": "0.29.3"
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/shopify-theme",
"version": "1.0.20",
"version": "1.1.0",
"scripts": {
"dev": "nuxt",
"build": "nuxt build --modern=client",
Expand All @@ -17,7 +17,7 @@
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/style-resources": "^1.0.0",
"@storefront-ui/vue": "^0.11.4",
"@vue-storefront/shopify": "^1.0.20",
"@vue-storefront/shopify": "^1.1.0",
"@vue-storefront/middleware": "2.5.6",
"@vue-storefront/nuxt": "2.5.6",
"@vue-storefront/nuxt-theme": "2.5.6",
Expand Down

0 comments on commit 630c256

Please sign in to comment.