@faststore/core 0.3.0 → 0.3.2
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 +14 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Conventional Changelog](https://github.com/conventional-changelog/conventional-changelog),
|
|
6
6
|
and this project adheres to [Calendar Versioning](https://calver.org/).
|
|
7
7
|
|
|
8
|
+
### [0.3.2](https://github.com/vtex-sites/nextjs.store/compare/0.3.1...0.3.2) (2022-11-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* specifies exact typescript version to avoid breaking changes ([#300](https://github.com/vtex-sites/nextjs.store/issues/300)) ([7b719ac](https://github.com/vtex-sites/nextjs.store/commit/7b719ac1810c1510f7082984d2f10c45553b1822))
|
|
14
|
+
|
|
15
|
+
### [0.3.1](https://github.com/vtex-sites/nextjs.store/compare/0.3.0...0.3.1) (2022-11-08)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* include necessary build dependencies with package ([#297](https://github.com/vtex-sites/nextjs.store/issues/297)) ([c7b2345](https://github.com/vtex-sites/nextjs.store/commit/c7b2345645a89c3edd74296a0fa06ade3653ff6d))
|
|
21
|
+
|
|
8
22
|
## [0.3.0](https://github.com/vtex-sites/nextjs.store/compare/0.2.2...0.3.0) (2022-11-07)
|
|
9
23
|
|
|
10
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"browserslist": "supports es6-module and not dead",
|
|
6
6
|
"scripts": {
|
|
@@ -44,7 +44,20 @@
|
|
|
44
44
|
"react-dom": "^18.2.0",
|
|
45
45
|
"react-intersection-observer": "^8.32.5",
|
|
46
46
|
"sass": "^1.44.0",
|
|
47
|
-
"swr": "^1.3.0"
|
|
47
|
+
"swr": "^1.3.0",
|
|
48
|
+
"@types/react": "^18.0.14",
|
|
49
|
+
"@vtex/tsconfig": "0.6.0",
|
|
50
|
+
"autoprefixer": "^10.4.0",
|
|
51
|
+
"css-loader": "^6.7.1",
|
|
52
|
+
"eslint": "^7.22.0",
|
|
53
|
+
"eslint-config-next": "12.1.5",
|
|
54
|
+
"eslint-config-vtex-react": "^9.0.0",
|
|
55
|
+
"msw": "^0.43.1",
|
|
56
|
+
"postcss": "^8.4.4",
|
|
57
|
+
"sass-loader": "^12.6.0",
|
|
58
|
+
"style-loader": "^3.3.1",
|
|
59
|
+
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
|
60
|
+
"typescript": "4.7.3"
|
|
48
61
|
},
|
|
49
62
|
"devDependencies": {
|
|
50
63
|
"@cypress/code-coverage": "^3.9.10",
|
|
@@ -63,37 +76,24 @@
|
|
|
63
76
|
"@storybook/react": "^6.5.9",
|
|
64
77
|
"@testing-library/cypress": "^8.0.0",
|
|
65
78
|
"@types/cypress": "^1.1.3",
|
|
66
|
-
"@types/react": "^18.0.14",
|
|
67
79
|
"@vtex/prettier-config": "1.0.0",
|
|
68
|
-
"@vtex/tsconfig": "0.6.0",
|
|
69
|
-
"autoprefixer": "^10.4.0",
|
|
70
80
|
"axe-core": "^4.3.3",
|
|
71
|
-
"css-loader": "^6.7.1",
|
|
72
81
|
"cypress": "9.6.0",
|
|
73
82
|
"cypress-axe": "^0.13.0",
|
|
74
83
|
"cypress-wait-until": "^1.7.2",
|
|
75
84
|
"dotenv": "^8.2.0",
|
|
76
|
-
"eslint": "^7.22.0",
|
|
77
|
-
"eslint-config-next": "12.1.5",
|
|
78
|
-
"eslint-config-vtex-react": "^9.0.0",
|
|
79
85
|
"husky": "^5.2.0",
|
|
80
86
|
"is-ci": "^3.0.0",
|
|
81
87
|
"lint-staged": "^10.5.4",
|
|
82
|
-
"msw": "^0.43.1",
|
|
83
88
|
"msw-storybook-addon": "^1.6.3",
|
|
84
|
-
"postcss": "^8.4.4",
|
|
85
89
|
"prettier": "^2.2.0",
|
|
86
90
|
"release-it": "^15.2.0",
|
|
87
|
-
"sass-loader": "^12.6.0",
|
|
88
|
-
"style-loader": "^3.3.1",
|
|
89
91
|
"stylelint": "^14.6.0",
|
|
90
92
|
"stylelint-config-recess-order": "^3.0.0",
|
|
91
93
|
"stylelint-config-standard": "^24.0.0",
|
|
92
94
|
"stylelint-config-standard-scss": "^3.0.0",
|
|
93
95
|
"stylelint-order": "^5.0.0",
|
|
94
|
-
"stylelint-scss": "^4.0.1"
|
|
95
|
-
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
|
96
|
-
"typescript": "^4.7.3"
|
|
96
|
+
"stylelint-scss": "^4.0.1"
|
|
97
97
|
},
|
|
98
98
|
"lint-staged": {
|
|
99
99
|
"*.{ts,js,tsx,jsx}": [
|