@wlloyalty/wll-react-sdk 1.0.12 → 1.0.21
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/README.md +78 -36
- package/dist/index.d.ts +2 -2
- package/dist/index.js +8 -9
- package/dist/index.js.map +1 -1
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wlloyalty/wll-react-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"engines": {
|
|
12
|
-
"node": ">=
|
|
12
|
+
"node": ">=20"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "rollup -c --bundleConfigAsCjs",
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"test-storybook": "test-storybook",
|
|
22
22
|
"chromatic": "npx chromatic",
|
|
23
23
|
"type-check": "tsc --noEmit",
|
|
24
|
-
"commit": "cz"
|
|
24
|
+
"commit": "cz",
|
|
25
|
+
"docs:dev": "vitepress dev docs",
|
|
26
|
+
"docs:build": "vitepress build docs",
|
|
27
|
+
"docs:preview": "vitepress preview docs"
|
|
25
28
|
},
|
|
26
29
|
"lint-staged": {
|
|
27
30
|
"**/*.{ts,tsx}": [
|
|
@@ -90,12 +93,13 @@
|
|
|
90
93
|
"ts-loader": "^9.5.1",
|
|
91
94
|
"tsc-files": "^1.1.4",
|
|
92
95
|
"typescript": "^5.2.2",
|
|
96
|
+
"vitepress": "^1.5.0",
|
|
93
97
|
"webpack": "^5.88.2",
|
|
94
98
|
"webpack-cli": "^5.1.4",
|
|
95
99
|
"webpack-dev-server": "^4.15.1"
|
|
96
100
|
},
|
|
97
101
|
"volta": {
|
|
98
|
-
"node": "18.
|
|
102
|
+
"node": "20.18.0",
|
|
99
103
|
"yarn": "1.22.22"
|
|
100
104
|
}
|
|
101
105
|
}
|