@bigcommerce/checkout-sdk 1.268.0 → 1.271.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 +26 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/package.json +13 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigcommerce/checkout-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.271.0",
|
|
4
4
|
"description": "BigCommerce Checkout JavaScript SDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/checkout-sdk.js",
|
|
@@ -25,17 +25,16 @@
|
|
|
25
25
|
"homepage": "https://github.com/bigcommerce/checkout-sdk-js",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"prepare": "check-node-version --node '>=14.18' --npm '>=6'",
|
|
28
|
-
"build": "npm run bundle && npm run bundle-dts
|
|
28
|
+
"build": "npm run bundle && npm run bundle-dts",
|
|
29
29
|
"prebuild-cdn": "rm -rf dist-cdn",
|
|
30
30
|
"build-cdn": "npx nx run core:build-cdn",
|
|
31
31
|
"prebundle": "rm -rf dist",
|
|
32
32
|
"bundle": "npx nx run core:build",
|
|
33
33
|
"bundle:analyze": "npm run --silent bundle -- --config-name umd --profile --json > webpack-stats.json && webpack-bundle-analyzer webpack-stats.json dist --default-sizes gzip",
|
|
34
34
|
"bundle:watch": "npx nx run core:build-watch",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"docs": "typedoc --plugin typedoc-plugin-markdown --options typedoc.json --tsconfig ./tsconfig.base.json dist/checkout-sdk.d.ts",
|
|
35
|
+
"bundle-dts": "npx nx run core:build-dts",
|
|
36
|
+
"docs": "npx nx run core:docs",
|
|
37
|
+
"generate": "npx nx run core:generate",
|
|
39
38
|
"lint": "npx nx run-many --target=lint --all",
|
|
40
39
|
"release": "echo 'Please do not release locally, use CircleCi'",
|
|
41
40
|
"release:version": "git add dist docs && standard-version -a",
|
|
@@ -77,13 +76,16 @@
|
|
|
77
76
|
"devDependencies": {
|
|
78
77
|
"@babel/core": "^7.6.2",
|
|
79
78
|
"@babel/preset-env": "^7.6.2",
|
|
80
|
-
"@bigcommerce/
|
|
79
|
+
"@bigcommerce/eslint-config": "^1.0.1",
|
|
81
80
|
"@microsoft/api-extractor": "^6.3.0",
|
|
82
81
|
"@nrwl/cli": "^13.10.3",
|
|
83
|
-
"@nrwl/
|
|
82
|
+
"@nrwl/devkit": "^13.10.3",
|
|
83
|
+
"@nrwl/eslint-plugin-nx": "^13.10.3",
|
|
84
84
|
"@nrwl/jest": "^13.10.3",
|
|
85
|
+
"@nrwl/nx-plugin": "^13.10.3",
|
|
85
86
|
"@nrwl/workspace": "^13.10.3",
|
|
86
87
|
"@types/applepayjs": "^3.0.2",
|
|
88
|
+
"@types/glob": "^7.2.0",
|
|
87
89
|
"@types/grecaptcha": "^2.0.36",
|
|
88
90
|
"@types/jest": "^23.3.10",
|
|
89
91
|
"@types/node": "^14.18.18",
|
|
@@ -96,6 +98,9 @@
|
|
|
96
98
|
"eslint": "^8.16.0",
|
|
97
99
|
"eslint-config-prettier": "^8.5.0",
|
|
98
100
|
"eslint-plugin-import": "^2.26.0",
|
|
101
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
102
|
+
"eslint-plugin-react": "^7.30.1",
|
|
103
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
99
104
|
"jest": "^24.9.0",
|
|
100
105
|
"nx": "^13.10.3",
|
|
101
106
|
"prettier": "^2.6.2",
|