@udi-organization/udi-package 1.0.55 → 1.0.60
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 +4 -2
- package/dist/index.cjs.js +32 -15
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +32 -15
- package/dist/index.esm.js.map +1 -1
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@udi-organization/udi-package",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.60",
|
|
4
4
|
"description": "package for udi",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "gitlab",
|
|
@@ -22,10 +22,13 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"dev": "webpack serve --mode development",
|
|
24
24
|
"build": "rollup -c",
|
|
25
|
+
"test": "jest",
|
|
26
|
+
"test:watch": "jest --watch",
|
|
27
|
+
"test:coverage": "jest --coverage",
|
|
25
28
|
"prepublishOnly": "npm run build",
|
|
26
|
-
"release": "npm run build && npm version patch && npm publish --access public",
|
|
27
|
-
"release-minor": "npm run build && npm version minor && npm publish --access public",
|
|
28
|
-
"release-major": "npm run build && npm version major && npm publish --access public",
|
|
29
|
+
"release": "npm test && npm run build && npm version patch && npm publish --access public",
|
|
30
|
+
"release-minor": "npm test && npm run build && npm version minor && npm publish --access public",
|
|
31
|
+
"release-major": "npm test && npm run build && npm version major && npm publish --access public",
|
|
29
32
|
"watch": "npx rollup -c -w"
|
|
30
33
|
},
|
|
31
34
|
"keywords": [
|
|
@@ -48,9 +51,15 @@
|
|
|
48
51
|
"@mui/material": "^7.3.5",
|
|
49
52
|
"@rollup/plugin-babel": "^6.1.0",
|
|
50
53
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
54
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
55
|
+
"@testing-library/react": "^16.3.1",
|
|
56
|
+
"babel-jest": "^30.2.0",
|
|
51
57
|
"babel-loader": "^10.0.0",
|
|
52
58
|
"css-loader": "^7.1.2",
|
|
53
59
|
"html-webpack-plugin": "^5.6.5",
|
|
60
|
+
"identity-obj-proxy": "^3.0.0",
|
|
61
|
+
"jest": "^30.2.0",
|
|
62
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
54
63
|
"react": "^19.2.0",
|
|
55
64
|
"react-dom": "^19.2.0",
|
|
56
65
|
"react-icons": "^5.5.0",
|