@erpp/react-api-cronos-frontend 1.0.15 → 1.0.16
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/index.d.mts +983 -6
- package/dist/index.d.ts +983 -6
- package/dist/index.js +215 -50
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +198 -33
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@erpp/react-api-cronos-frontend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsup",
|
|
8
8
|
"test": "tsx test/index.test.ts",
|
|
9
9
|
"gen-exports-hooks": "tsx src/scripts/gen-exports-hooks.ts",
|
|
10
|
-
"deploy": "npm run gen-exports-hooks && npm run test && npm version patch && npm run build && npm publish --access public"
|
|
10
|
+
"deploy": "npm run gen-exports-hooks && npm run test && npm version patch && npm run build && npm publish --access public",
|
|
11
|
+
"deploy:unpatched": "npm run gen-exports-hooks && npm run test && npm run build && npm publish --access public"
|
|
11
12
|
},
|
|
12
13
|
"files": [
|
|
13
14
|
"dist"
|