@bigbinary/neeto-commons-frontend 2.0.59 → 2.0.61
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 +1 -0
- package/configs/scripts/jsdoc-builder/constants.mjs +42 -0
- package/configs/scripts/jsdoc-builder/index.mjs +67 -0
- package/configs/scripts/jsdoc-builder/utils.mjs +218 -0
- package/cypress-utils.d.ts +99 -103
- package/initializers.d.ts +20 -9
- package/package.json +9 -4
- package/pure.d.ts +1895 -270
- package/react-utils.cjs.js +5 -5
- package/react-utils.d.ts +338 -115
- package/react-utils.js +5 -5
- package/utils.cjs.js +1 -1
- package/utils.d.ts +265 -48
- package/utils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-commons-frontend",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.61",
|
|
4
4
|
"description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
"prepare": "husky install",
|
|
10
10
|
"sync_with_wheel": "./.scripts/sync_with_wheel.sh",
|
|
11
11
|
"test": "TZ=UTC jest",
|
|
12
|
-
"build": "NODE_ENV=production rollup -c rollup.config.js",
|
|
13
|
-
"watch": "rollup -c rollup.config.js --watch"
|
|
12
|
+
"build": "NODE_ENV=production rollup -c rollup.config.js && yarn build:jsdoc",
|
|
13
|
+
"watch": "rollup -c rollup.config.js --watch",
|
|
14
|
+
"build:jsdoc": "node ./.scripts/jsdoc-builder.mjs"
|
|
14
15
|
},
|
|
15
16
|
"engines": {
|
|
16
17
|
"node": ">=18.12",
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"configs"
|
|
28
29
|
],
|
|
29
30
|
"lint-staged": {
|
|
30
|
-
"**/*.{js,jsx,json}": [
|
|
31
|
+
"**/*.{js,jsx,json,mjs}": [
|
|
31
32
|
".scripts/fix-lints.sh"
|
|
32
33
|
]
|
|
33
34
|
},
|
|
@@ -62,11 +63,13 @@
|
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"@babel/core": "^7.19.1",
|
|
64
65
|
"@babel/eslint-parser": "7.17.0",
|
|
66
|
+
"@babel/generator": "^7.20.7",
|
|
65
67
|
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
66
68
|
"@babel/preset-env": "7.17.10",
|
|
67
69
|
"@babel/preset-react": "7.16.7",
|
|
68
70
|
"@babel/preset-typescript": "^7.18.6",
|
|
69
71
|
"@babel/runtime": "^7.19.0",
|
|
72
|
+
"@babel/types": "^7.20.7",
|
|
70
73
|
"@bigbinary/eslint-plugin-neeto": "^1.0.21",
|
|
71
74
|
"@bigbinary/neeto-commons-frontend": "2.0.57",
|
|
72
75
|
"@bigbinary/neeto-icons": "^1.9.15",
|
|
@@ -142,6 +145,7 @@
|
|
|
142
145
|
"react-query": "^3.39.2",
|
|
143
146
|
"react-router-dom": "5.3.1",
|
|
144
147
|
"react-toastify": "8.0.2",
|
|
148
|
+
"remark-parse": "^10.0.1",
|
|
145
149
|
"rollup": "^2.76.0",
|
|
146
150
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
147
151
|
"rollup-plugin-cleaner": "^1.0.0",
|
|
@@ -150,6 +154,7 @@
|
|
|
150
154
|
"sass": "^1.58.1",
|
|
151
155
|
"sass-loader": "10.0.2",
|
|
152
156
|
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
|
|
157
|
+
"uuid": "^9.0.0",
|
|
153
158
|
"yup": "^0.32.11",
|
|
154
159
|
"zustand": "4.3.2"
|
|
155
160
|
},
|