@visulima/api-platform 2.0.3 → 2.0.4
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 +16 -0
- package/package.json +20 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## @visulima/api-platform [2.0.4](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.0.3...@visulima/api-platform@2.0.4) (2023-10-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* removed types from exports key ([80bd356](https://github.com/visulima/visulima/commit/80bd356659a45bd351a60870b0f380569c75e0c1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@visulima/connect:** upgraded to 2.1.2
|
|
13
|
+
* **@visulima/jsdoc-open-api:** upgraded to 2.0.4
|
|
14
|
+
* **@visulima/crud:** upgraded to 2.0.4
|
|
15
|
+
* **@visulima/readdir:** upgraded to 2.0.4
|
|
16
|
+
|
|
1
17
|
## @visulima/api-platform [2.0.3](https://github.com/visulima/visulima/compare/@visulima/api-platform@2.0.2...@visulima/api-platform@2.0.3) (2023-10-11)
|
|
2
18
|
|
|
3
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/api-platform",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Visulima API platform is a set of tools to build and consume web APIs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -54,7 +54,6 @@
|
|
|
54
54
|
"sideEffects": false,
|
|
55
55
|
"exports": {
|
|
56
56
|
".": {
|
|
57
|
-
"types": "./dist/index-server.d.ts",
|
|
58
57
|
"browser": "./dist/index-browser.js",
|
|
59
58
|
"require": {
|
|
60
59
|
"types": "./dist/index-server.d.ts",
|
|
@@ -66,7 +65,6 @@
|
|
|
66
65
|
}
|
|
67
66
|
},
|
|
68
67
|
"./next": {
|
|
69
|
-
"types": "./dist/framework/next/index-server.d.ts",
|
|
70
68
|
"browser": "./dist/framework/next/index-browser.js",
|
|
71
69
|
"require": {
|
|
72
70
|
"types": "./dist/framework/next/index-server.d.ts",
|
|
@@ -78,7 +76,6 @@
|
|
|
78
76
|
}
|
|
79
77
|
},
|
|
80
78
|
"./next/pages/swagger": {
|
|
81
|
-
"types": "./dist/framework/next/routes/pages/swagger/index.d.ts",
|
|
82
79
|
"browser": "./dist/framework/next/routes/pages/swagger/index.js",
|
|
83
80
|
"require": {
|
|
84
81
|
"types": "./dist/framework/next/routes/pages/swagger/index.d.ts",
|
|
@@ -90,7 +87,6 @@
|
|
|
90
87
|
}
|
|
91
88
|
},
|
|
92
89
|
"./next/pages/redoc": {
|
|
93
|
-
"types": "./dist/framework/next/routes/pages/redoc/index.d.ts",
|
|
94
90
|
"browser": "./dist/framework/next/routes/pages/redoc/index.js",
|
|
95
91
|
"require": {
|
|
96
92
|
"types": "./dist/framework/next/routes/pages/redoc/index.d.ts",
|
|
@@ -102,14 +98,13 @@
|
|
|
102
98
|
}
|
|
103
99
|
},
|
|
104
100
|
"./cli": {
|
|
105
|
-
"types": "./dist/framework/cli/index-server.d.ts",
|
|
106
101
|
"require": {
|
|
107
|
-
"types": "./dist/framework/cli/index
|
|
108
|
-
"default": "./dist/framework/cli/index
|
|
102
|
+
"types": "./dist/framework/cli/index.d.ts",
|
|
103
|
+
"default": "./dist/framework/cli/index.js"
|
|
109
104
|
},
|
|
110
105
|
"import": {
|
|
111
|
-
"types": "./dist/framework/cli/index
|
|
112
|
-
"default": "./dist/framework/cli/index
|
|
106
|
+
"types": "./dist/framework/cli/index.d.mts",
|
|
107
|
+
"default": "./dist/framework/cli/index.mjs"
|
|
113
108
|
}
|
|
114
109
|
},
|
|
115
110
|
"./package.json": "./package.json"
|
|
@@ -133,6 +128,7 @@
|
|
|
133
128
|
"scripts": {
|
|
134
129
|
"build": "rimraf dist && cross-env NODE_ENV=development tsup",
|
|
135
130
|
"build:prod": "rimraf dist && cross-env NODE_ENV=production tsup",
|
|
131
|
+
"check:packagejson": "publint --strict",
|
|
136
132
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
137
133
|
"coverage": "vitest run --coverage",
|
|
138
134
|
"dev": "pnpm run build --watch",
|
|
@@ -145,8 +141,8 @@
|
|
|
145
141
|
"test:watch": "vitest"
|
|
146
142
|
},
|
|
147
143
|
"dependencies": {
|
|
148
|
-
"@visulima/connect": "2.1.
|
|
149
|
-
"@visulima/jsdoc-open-api": "2.0.
|
|
144
|
+
"@visulima/connect": "2.1.2",
|
|
145
|
+
"@visulima/jsdoc-open-api": "2.0.4",
|
|
150
146
|
"accepts": "^1.3.8",
|
|
151
147
|
"debug": "^4.3.4",
|
|
152
148
|
"http-errors": "^2.0.0",
|
|
@@ -163,7 +159,7 @@
|
|
|
163
159
|
"@anolilab/prettier-config": "^5.0.11",
|
|
164
160
|
"@anolilab/semantic-release-preset": "^8.0.0",
|
|
165
161
|
"@arthurgeron/eslint-plugin-react-usememo": "^2.0.1",
|
|
166
|
-
"@babel/core": "^7.23.
|
|
162
|
+
"@babel/core": "^7.23.2",
|
|
167
163
|
"@hapi/hapi": "^21.3.2",
|
|
168
164
|
"@koa/router": "^12.0.0",
|
|
169
165
|
"@secretlint/secretlint-rule-preset-recommend": "^7.0.7",
|
|
@@ -186,11 +182,11 @@
|
|
|
186
182
|
"@types/react-dom": "^18.2.13",
|
|
187
183
|
"@types/swagger-ui-react": "^4.18.0",
|
|
188
184
|
"@types/webpack": "^5.28.3",
|
|
189
|
-
"@visulima/crud": "2.0.
|
|
190
|
-
"@visulima/readdir": "2.0.
|
|
185
|
+
"@visulima/crud": "2.0.4",
|
|
186
|
+
"@visulima/readdir": "2.0.4",
|
|
191
187
|
"@vitest/coverage-v8": "^0.34.6",
|
|
192
188
|
"chalk": "5.3.0",
|
|
193
|
-
"commander": "^11.
|
|
189
|
+
"commander": "^11.1.0",
|
|
194
190
|
"core-js": "^3.33.0",
|
|
195
191
|
"cors": "^2.8.5",
|
|
196
192
|
"cross-env": "^7.0.3",
|
|
@@ -203,13 +199,13 @@
|
|
|
203
199
|
"eslint-plugin-react": "7.33.2",
|
|
204
200
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
205
201
|
"eslint-plugin-ssr-friendly": "^1.2.0",
|
|
206
|
-
"eslint-plugin-testing-library": "^6.0
|
|
202
|
+
"eslint-plugin-testing-library": "^6.1.0",
|
|
207
203
|
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
|
|
208
204
|
"eslint-plugin-vitest": "^0.3.2",
|
|
209
205
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
210
206
|
"eslint-plugin-zod": "^1.4.0",
|
|
211
207
|
"express": "^4.18.2",
|
|
212
|
-
"fastify": "^4.
|
|
208
|
+
"fastify": "^4.24.1",
|
|
213
209
|
"koa": "^2.14.2",
|
|
214
210
|
"mobx": "^6.10.2",
|
|
215
211
|
"next": "^13.4.19",
|
|
@@ -225,7 +221,7 @@
|
|
|
225
221
|
"secretlint": "7.0.7",
|
|
226
222
|
"semantic-release": "^22.0.5",
|
|
227
223
|
"sort-package-json": "^2.6.0",
|
|
228
|
-
"styled-components": "^6.0.
|
|
224
|
+
"styled-components": "^6.0.9",
|
|
229
225
|
"swagger-ui-dist": "^4.19.1",
|
|
230
226
|
"swagger-ui-react": "^4.19.1",
|
|
231
227
|
"tsup": "^7.2.0",
|
|
@@ -243,15 +239,15 @@
|
|
|
243
239
|
"optionalDependencies": {
|
|
244
240
|
"@hapi/hapi": "^21.3.2",
|
|
245
241
|
"@koa/router": "^12.0.0",
|
|
246
|
-
"@visulima/crud": "2.0.
|
|
247
|
-
"@visulima/readdir": "2.0.
|
|
242
|
+
"@visulima/crud": "2.0.4",
|
|
243
|
+
"@visulima/readdir": "2.0.4",
|
|
248
244
|
"chalk": "5.3.0",
|
|
249
|
-
"commander": "^11.
|
|
245
|
+
"commander": "^11.1.0",
|
|
250
246
|
"cors": "^2.8.5",
|
|
251
247
|
"express": "^4.18.2",
|
|
252
|
-
"fastify": "^4.
|
|
248
|
+
"fastify": "^4.24.1",
|
|
253
249
|
"koa": "^2.14.2",
|
|
254
|
-
"next": "^13.4
|
|
250
|
+
"next": "^13.5.4",
|
|
255
251
|
"rate-limiter-flexible": "^3.0.0",
|
|
256
252
|
"redoc": "^2.1.2",
|
|
257
253
|
"swagger-ui-dist": "^4.19.1",
|