@visulima/crud 2.0.3 → 2.0.5
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 +28 -0
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## @visulima/crud [2.0.5](https://github.com/visulima/visulima/compare/@visulima/crud@2.0.4...@visulima/crud@2.0.5) (2023-10-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated deps ([4eedb60](https://github.com/visulima/visulima/commit/4eedb604c4f78cf331195e2c053dc72e1c6cf9ad))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/pagination:** upgraded to 3.0.5
|
|
13
|
+
* **@visulima/prisma-dmmf-transformer:** upgraded to 2.0.5
|
|
14
|
+
|
|
15
|
+
## @visulima/crud [2.0.4](https://github.com/visulima/visulima/compare/@visulima/crud@2.0.3...@visulima/crud@2.0.4) (2023-10-15)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* removed types from exports key ([80bd356](https://github.com/visulima/visulima/commit/80bd356659a45bd351a60870b0f380569c75e0c1))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Dependencies
|
|
25
|
+
|
|
26
|
+
* **@visulima/pagination:** upgraded to 3.0.4
|
|
27
|
+
* **@visulima/prisma-dmmf-transformer:** upgraded to 2.0.4
|
|
28
|
+
|
|
1
29
|
## @visulima/crud [2.0.3](https://github.com/visulima/visulima/compare/@visulima/crud@2.0.2...@visulima/crud@2.0.3) (2023-10-11)
|
|
2
30
|
|
|
3
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/crud",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "visulima crud",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"sideEffects": false,
|
|
35
35
|
"exports": {
|
|
36
36
|
".": {
|
|
37
|
-
"types": "./dist/index.d.ts",
|
|
38
37
|
"require": {
|
|
39
38
|
"types": "./dist/index.d.ts",
|
|
40
39
|
"default": "./dist/index.js"
|
|
@@ -45,7 +44,6 @@
|
|
|
45
44
|
}
|
|
46
45
|
},
|
|
47
46
|
"./next": {
|
|
48
|
-
"types": "./dist/next/index.d.ts",
|
|
49
47
|
"require": {
|
|
50
48
|
"types": "./dist/next/index.d.ts",
|
|
51
49
|
"default": "./dist/next/index.js"
|
|
@@ -74,7 +72,8 @@
|
|
|
74
72
|
"coverage": "vitest run --coverage",
|
|
75
73
|
"dev": "pnpm run build --watch",
|
|
76
74
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
77
|
-
"lint:eslint:fix": "
|
|
75
|
+
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
76
|
+
"lint:packagejson": "publint --strict",
|
|
78
77
|
"lint:prettier": "prettier --config=.prettierrc.js --check .",
|
|
79
78
|
"lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
|
|
80
79
|
"lint:types": "tsc --noEmit",
|
|
@@ -82,8 +81,8 @@
|
|
|
82
81
|
"test:watch": "vitest"
|
|
83
82
|
},
|
|
84
83
|
"dependencies": {
|
|
85
|
-
"@visulima/pagination": "3.0.
|
|
86
|
-
"@visulima/prisma-dmmf-transformer": "2.0.
|
|
84
|
+
"@visulima/pagination": "3.0.5",
|
|
85
|
+
"@visulima/prisma-dmmf-transformer": "2.0.5",
|
|
87
86
|
"http-errors": "^2.0.0",
|
|
88
87
|
"lodash.set": "^4.3.2",
|
|
89
88
|
"path-to-regexp": "^6.2.1"
|
|
@@ -92,16 +91,16 @@
|
|
|
92
91
|
"@anolilab/eslint-config": "^14.0.24",
|
|
93
92
|
"@anolilab/prettier-config": "^5.0.11",
|
|
94
93
|
"@anolilab/semantic-release-preset": "^8.0.0",
|
|
95
|
-
"@babel/core": "^7.23.
|
|
94
|
+
"@babel/core": "^7.23.2",
|
|
96
95
|
"@prisma/client": "4.16.2",
|
|
97
96
|
"@rushstack/eslint-plugin-security": "^0.7.1",
|
|
98
|
-
"@types/http-errors": "^2.0.
|
|
99
|
-
"@types/json-schema": "7.0.
|
|
100
|
-
"@types/lodash.set": "^4.3.
|
|
101
|
-
"@types/node": "18.
|
|
97
|
+
"@types/http-errors": "^2.0.3",
|
|
98
|
+
"@types/json-schema": "7.0.14",
|
|
99
|
+
"@types/lodash.set": "^4.3.8",
|
|
100
|
+
"@types/node": "18.18.5",
|
|
102
101
|
"@vitest/coverage-v8": "^0.34.6",
|
|
103
102
|
"cross-env": "^7.0.3",
|
|
104
|
-
"eslint": "^8.
|
|
103
|
+
"eslint": "^8.52.0",
|
|
105
104
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
106
105
|
"eslint-plugin-etc": "^2.0.3",
|
|
107
106
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.28.1",
|
|
@@ -109,7 +108,7 @@
|
|
|
109
108
|
"eslint-plugin-mdx": "^2.2.0",
|
|
110
109
|
"eslint-plugin-ssr-friendly": "^1.2.0",
|
|
111
110
|
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
|
|
112
|
-
"eslint-plugin-vitest": "^0.3.
|
|
111
|
+
"eslint-plugin-vitest": "^0.3.8",
|
|
113
112
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
114
113
|
"next": "^12.0.0 || ^13.0.0",
|
|
115
114
|
"next-test-api-route-handler": "^4.0.0-canary.1",
|