@vue-storefront/next 0.0.1 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Change log
2
+
3
+ ## 1.0.1
4
+
5
+ - **[CHANGED]** Set `@vue-storefront/sdk` as a dependency instead of a peer dependency
6
+
7
+ ## 1.0.0
8
+
9
+ - Initialized the package
package/README.md CHANGED
@@ -116,7 +116,7 @@ export function Providers({ children }: { children: ReactNode }) {
116
116
 
117
117
  5. The example of using the SDK can be found in example applications:
118
118
 
119
- - [Pages Router](./__tests__/apps/pages-router)
120
- - [App Router](./__tests__/apps/app-router)
119
+ - [Pages Router](https://github.com/vuestorefront/vue-storefront/tree/main/packages/storefront/packages/next/__tests__/apps/pages-router)
120
+ - [App Router](https://github.com/vuestorefront/vue-storefront/tree/main/packages/storefront/packages/next/__tests__/apps/app-router)
121
121
 
122
122
  That's it! You can now use VueStorefront Next in your Next app ✨
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@vue-storefront/next",
3
3
  "description": "Vue Storefront dedicated features for Next.js",
4
4
  "license": "MIT",
5
- "version": "0.0.1",
5
+ "version": "1.0.1",
6
6
  "exports": {
7
7
  ".": {
8
8
  "import": "./dist/index.mjs",
@@ -42,6 +42,9 @@
42
42
  "test:e2e": "cd ../../shared/ && yarn test:e2e",
43
43
  "test:unit": "vitest run"
44
44
  },
45
+ "dependencies": {
46
+ "@vue-storefront/sdk": "^1.0.0"
47
+ },
45
48
  "devDependencies": {
46
49
  "@types/react": "^18.2.31",
47
50
  "@types/react-dom": "^18.2.14",
@@ -51,7 +54,6 @@
51
54
  "vitest": "^0.34.6"
52
55
  },
53
56
  "peerDependencies": {
54
- "@vue-storefront/sdk": "^1.0.0",
55
57
  "react": "^18.2.0",
56
58
  "next": "^13.4.7 || ^14.0.0"
57
59
  },