@vtex/faststore-plugin-buyer-portal 1.2.1 → 1.2.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/.husky/pre-commit
CHANGED
package/.release-it.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"github": {
|
|
3
|
+
"release": true,
|
|
4
|
+
"releaseName": "Release ${version}"
|
|
5
|
+
},
|
|
6
|
+
"hooks": {
|
|
7
|
+
"after:release": "echo Successfully released ${name} ${version}"
|
|
8
|
+
},
|
|
9
|
+
"git": {
|
|
10
|
+
"tagName": "${version}",
|
|
11
|
+
"commitArgs": ["--no-verify"]
|
|
12
|
+
},
|
|
13
|
+
"plugins": {
|
|
14
|
+
"@release-it/keep-a-changelog": {
|
|
15
|
+
"strictLatest": false,
|
|
16
|
+
"addUnreleased": true,
|
|
17
|
+
"addVersionUrl": true,
|
|
18
|
+
"filename": "CHANGELOG.md"
|
|
19
|
+
},
|
|
20
|
+
"@release-it/bumper": {
|
|
21
|
+
"in": "package.json",
|
|
22
|
+
"out": "./src/features/shared/utils/constants.ts"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
package/package.json
CHANGED
|
@@ -1,44 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
2
|
+
"name": "@vtex/faststore-plugin-buyer-portal",
|
|
3
|
+
"version": "1.2.2",
|
|
4
|
+
"description": "A plugin for faststore with buyer portal",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
8
|
+
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
9
|
+
"prepare": "husky",
|
|
10
|
+
"release": "yarn release:stable",
|
|
11
|
+
"release:stable": "yarn check --integrity && yarn release-it -c .release-it.json --ci --no-npm",
|
|
12
|
+
"release:beta": "yarn check --integrity && yarn release-it -c .release-it.beta.json --only-version --preRelease=beta"
|
|
13
|
+
},
|
|
14
|
+
"lint-staged": {
|
|
15
|
+
"*.{js,jsx,ts,tsx}": [
|
|
16
|
+
"eslint --fix"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@types/react-dom": "^19.0.3",
|
|
21
|
+
"react-dom": "^19.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@eslint/js": "^9.29.0",
|
|
25
|
+
"@faststore/core": "^3.41.5",
|
|
26
|
+
"@faststore/ui": "^3.41.5",
|
|
27
|
+
"@release-it/bumper": "^4.0.0",
|
|
28
|
+
"@release-it/keep-a-changelog": "^3.0.0",
|
|
29
|
+
"@types/react": "^18.2.42",
|
|
30
|
+
"cypress": "13",
|
|
31
|
+
"eslint": "^9.29.0",
|
|
32
|
+
"eslint-config-prettier": "^10.1.5",
|
|
33
|
+
"eslint-plugin-import": "^2.32.0",
|
|
34
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
35
|
+
"eslint-plugin-react": "^7.37.5",
|
|
36
|
+
"globals": "^16.2.0",
|
|
37
|
+
"husky": "^9.1.7",
|
|
38
|
+
"lint-staged": "^16.1.2",
|
|
39
|
+
"next": "13.5.7",
|
|
40
|
+
"release-it": "^17.1.1",
|
|
41
|
+
"typescript": "4.7.3",
|
|
42
|
+
"typescript-eslint": "^8.35.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"react": "^18.2.0",
|
|
46
|
+
"react-dom": "^18.2.0"
|
|
47
|
+
},
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
44
50
|
}
|
|
@@ -537,4 +537,11 @@
|
|
|
537
537
|
fill="currentColor"
|
|
538
538
|
/>
|
|
539
539
|
</symbol>
|
|
540
|
+
|
|
541
|
+
<symbol id="CircleQuestionMark" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
542
|
+
<path
|
|
543
|
+
d="M140,180a12,12,0,1,1-12-12A12,12,0,0,1,140,180ZM128,72c-22.06,0-40,16.15-40,36v4a8,8,0,0,0,16,0v-4c0-11,10.77-20,24-20s24,9,24,20-10.77,20-24,20a8,8,0,0,0-8,8v8a8,8,0,0,0,16,0v-.72c18.24-3.35,32-17.9,32-35.28C168,88.15,150.06,72,128,72Zm104,56A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z"
|
|
544
|
+
fill="currentColor"/>
|
|
545
|
+
</symbol>
|
|
540
546
|
</svg>
|
|
547
|
+
|