@visulima/connect 3.0.17 → 3.0.18
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 +12 -0
- package/README.md +1 -1
- package/package.json +2 -66
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @visulima/connect [3.0.18](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.17...@visulima/connect@3.0.18) (2025-01-25)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed wrong node version range in package.json ([4ae2929](https://github.com/visulima/visulima/commit/4ae292984681c71a770e4d4560432f7b7c5a141a))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* fixed typescript url ([fe65a8c](https://github.com/visulima/visulima/commit/fe65a8c0296ece7ee26474c70d065b06d4d0da89))
|
|
10
|
+
* updated all dev dependencies ([37fb298](https://github.com/visulima/visulima/commit/37fb298b2af7c63be64252024e54bb3af6ddabec))
|
|
11
|
+
* updated all dev dependencies and all dependencies in the app folder ([87f4ccb](https://github.com/visulima/visulima/commit/87f4ccbf9f7900ec5b56f3c1477bc4a0ef571bcf))
|
|
12
|
+
|
|
1
13
|
## @visulima/connect [3.0.17](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.16...@visulima/connect@3.0.17) (2025-01-12)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -621,7 +621,7 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
621
621
|
The visulima connect is open-sourced software licensed under the [MIT][license-url]
|
|
622
622
|
|
|
623
623
|
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
624
|
-
[typescript-url]: "typescript"
|
|
624
|
+
[typescript-url]: https://www.typescriptlang.org/ "TypeScript" "typescript"
|
|
625
625
|
[license-image]: https://img.shields.io/npm/l/@visulima/connect?color=blueviolet&style=for-the-badge
|
|
626
626
|
[license-url]: LICENSE.md "license"
|
|
627
627
|
[npm-image]: https://img.shields.io/npm/v/@visulima/connect/latest.svg?style=for-the-badge&logo=npm
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/connect",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.18",
|
|
4
4
|
"description": "The minimal router and middleware layer for Next.js, Micro, Vercel, or Node.js http/http2 with support for zod validation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -73,46 +73,11 @@
|
|
|
73
73
|
"http-errors": "^2.0.0",
|
|
74
74
|
"regexparam": "^3.0.0"
|
|
75
75
|
},
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"@anolilab/eslint-config": "^15.0.3",
|
|
78
|
-
"@anolilab/prettier-config": "^5.0.14",
|
|
79
|
-
"@anolilab/semantic-release-pnpm": "^1.1.6",
|
|
80
|
-
"@anolilab/semantic-release-preset": "^9.0.3",
|
|
81
|
-
"@arethetypeswrong/cli": "^0.17.2",
|
|
82
|
-
"@babel/core": "^7.26.0",
|
|
83
|
-
"@rushstack/eslint-plugin-security": "^0.8.3",
|
|
84
|
-
"@types/http-errors": "^2.0.4",
|
|
85
|
-
"@types/node": "18.19.15",
|
|
86
|
-
"@visulima/nextra-theme-docs": "4.0.26",
|
|
87
|
-
"@visulima/packem": "1.10.7",
|
|
88
|
-
"@vitest/coverage-v8": "^2.1.8",
|
|
89
|
-
"@vitest/ui": "^2.1.8",
|
|
90
|
-
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
91
|
-
"cross-env": "^7.0.3",
|
|
92
|
-
"esbuild": "0.24.2",
|
|
93
|
-
"eslint": "8.57.0",
|
|
94
|
-
"eslint-plugin-deprecation": "^3.0.0",
|
|
95
|
-
"eslint-plugin-etc": "^2.0.3",
|
|
96
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
97
|
-
"eslint-plugin-mdx": "^3.1.5",
|
|
98
|
-
"eslint-plugin-vitest": "^0.4.1",
|
|
99
|
-
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
100
|
-
"eslint-plugin-zod": "^1.4.0",
|
|
101
|
-
"express": "^4.21.2",
|
|
102
|
-
"fastify": "^5.2.1",
|
|
103
|
-
"isomorphic-fetch": "^3.0.0",
|
|
104
|
-
"prettier": "^3.4.2",
|
|
105
|
-
"rimraf": "6.0.1",
|
|
106
|
-
"semantic-release": "24.2.1",
|
|
107
|
-
"typescript": "5.7.3",
|
|
108
|
-
"vitest": "^2.1.8",
|
|
109
|
-
"zod": "^3.24.1"
|
|
110
|
-
},
|
|
111
76
|
"peerDependencies": {
|
|
112
77
|
"zod": "^3.22.4"
|
|
113
78
|
},
|
|
114
79
|
"engines": {
|
|
115
|
-
"node": ">=18
|
|
80
|
+
"node": ">=18.0.0 <=23.x"
|
|
116
81
|
},
|
|
117
82
|
"os": [
|
|
118
83
|
"darwin",
|
|
@@ -122,34 +87,5 @@
|
|
|
122
87
|
"publishConfig": {
|
|
123
88
|
"access": "public",
|
|
124
89
|
"provenance": true
|
|
125
|
-
},
|
|
126
|
-
"anolilab": {
|
|
127
|
-
"eslint-config": {
|
|
128
|
-
"plugin": {
|
|
129
|
-
"tsdoc": false
|
|
130
|
-
},
|
|
131
|
-
"warn_on_unsupported_typescript_version": false,
|
|
132
|
-
"info_on_disabling_jsx_react_rule": false,
|
|
133
|
-
"info_on_disabling_prettier_conflict_rule": false,
|
|
134
|
-
"info_on_disabling_jsonc_sort_keys_rule": false,
|
|
135
|
-
"info_on_disabling_etc_no_deprecated": false
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
|
-
"scripts": {
|
|
139
|
-
"build": "cross-env NODE_ENV=development packem build",
|
|
140
|
-
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
141
|
-
"clean": "rimraf node_modules dist .eslintcache",
|
|
142
|
-
"dev": "pnpm run build --watch",
|
|
143
|
-
"lint:attw": "attw --pack",
|
|
144
|
-
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
145
|
-
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
146
|
-
"lint:package-json": "publint --strict",
|
|
147
|
-
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
148
|
-
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|
|
149
|
-
"lint:types": "tsc --noEmit",
|
|
150
|
-
"test": "vitest run",
|
|
151
|
-
"test:coverage": "vitest run --coverage",
|
|
152
|
-
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
153
|
-
"test:watch": "vitest"
|
|
154
90
|
}
|
|
155
91
|
}
|