@simpoobusiness/sdk 2.0.75 → 2.0.76
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/dist/.tsbuildinfo +1 -1
- package/dist/context/SimpooProvider.d.ts +1 -0
- package/dist/simpoo-sdk.css +1 -1
- package/dist/simpoo-sdk.js +39 -39
- package/dist/simpoo-sdk.js.map +1 -1
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.0.
|
|
6
|
+
"version": "2.0.76",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"unpkg": "dist/simpoo-sdk.js",
|
|
9
9
|
"jsdelivr": "dist/simpoo-sdk.js",
|
|
@@ -19,6 +19,17 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"description": "Simpoo SDK for embedding simpooBusiness inventory widgets into any web app",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "rimraf dist",
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"build": "npm run clean && npm run build:types && npm run build:bundle",
|
|
26
|
+
"build:bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
27
|
+
"docs": "typedoc --out docs src/embed.tsx",
|
|
28
|
+
"build:watch": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs -w ",
|
|
29
|
+
"dev": "npm run build:watch",
|
|
30
|
+
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --incremental --project tsconfig.build.json",
|
|
31
|
+
"publish:npm": "npm publish --access public"
|
|
32
|
+
},
|
|
22
33
|
"devDependencies": {
|
|
23
34
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
24
35
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
@@ -81,16 +92,5 @@
|
|
|
81
92
|
"tslib": "^2.8.1",
|
|
82
93
|
"tw-animate-css": "^1.3.6",
|
|
83
94
|
"use-debounce": "^10.0.5"
|
|
84
|
-
},
|
|
85
|
-
"scripts": {
|
|
86
|
-
"clean": "rimraf dist",
|
|
87
|
-
"typecheck": "tsc --noEmit",
|
|
88
|
-
"build": "npm run clean && npm run build:types && npm run build:bundle",
|
|
89
|
-
"build:bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
90
|
-
"docs": "typedoc --out docs src/embed.tsx",
|
|
91
|
-
"build:watch": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs -w ",
|
|
92
|
-
"dev": "npm run build:watch",
|
|
93
|
-
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --incremental --project tsconfig.build.json",
|
|
94
|
-
"publish:npm": "npm publish --access public"
|
|
95
95
|
}
|
|
96
|
-
}
|
|
96
|
+
}
|