@vue-storefront/next 1.0.0 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +4 -2
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/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": "1.0.0",
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
  },