commerce-sdk-isomorphic 1.13.1 → 2.1.0-dev.0
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 +31 -0
- package/README.md +77 -0
- package/lib/index.cjs.d.ts +4683 -894
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.d.ts +4683 -894
- package/lib/index.esm.js +1 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commerce-sdk-isomorphic",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0-dev.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Salesforce Commerce SDK Isomorphic",
|
|
6
6
|
"bugs": {
|
|
@@ -97,7 +97,8 @@
|
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
99
|
"nanoid": "^3.3.4",
|
|
100
|
-
"node-fetch": "2.6.12"
|
|
100
|
+
"node-fetch": "2.6.12",
|
|
101
|
+
"seedrandom": "^3.0.5"
|
|
101
102
|
},
|
|
102
103
|
"devDependencies": {
|
|
103
104
|
"@babel/cli": "7.18.6",
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
"@babel/preset-env": "7.18.6",
|
|
108
109
|
"@babel/preset-react": "7.18.6",
|
|
109
110
|
"@babel/preset-typescript": "^7.18.6",
|
|
110
|
-
"@commerce-apps/raml-toolkit": "
|
|
111
|
+
"@commerce-apps/raml-toolkit": "0.5.12",
|
|
111
112
|
"@rollup/plugin-babel": "5.3.1",
|
|
112
113
|
"@rollup/plugin-commonjs": "13.0.2",
|
|
113
114
|
"@rollup/plugin-node-resolve": "8.4.0",
|
|
@@ -117,6 +118,7 @@
|
|
|
117
118
|
"@types/handlebars-helpers": "^0.5.3",
|
|
118
119
|
"@types/node-fetch": "^2.6.2",
|
|
119
120
|
"@types/react-dom": "^16.9.16",
|
|
121
|
+
"@types/seedrandom": "^3.0.8",
|
|
120
122
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
121
123
|
"@typescript-eslint/parser": "^4.33.0",
|
|
122
124
|
"autoprefixer": "9.8.8",
|
|
@@ -175,11 +177,11 @@
|
|
|
175
177
|
"bundlesize": [
|
|
176
178
|
{
|
|
177
179
|
"path": "lib/**/*.js",
|
|
178
|
-
"maxSize": "
|
|
180
|
+
"maxSize": "48 kB"
|
|
179
181
|
},
|
|
180
182
|
{
|
|
181
183
|
"path": "commerce-sdk-isomorphic-with-deps.tgz",
|
|
182
|
-
"maxSize": "
|
|
184
|
+
"maxSize": "410 kB"
|
|
183
185
|
}
|
|
184
186
|
],
|
|
185
187
|
"proxy": "https://SHORTCODE.api.commercecloud.salesforce.com"
|