@prosopo/api-express-router 3.0.4 → 3.0.6
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 +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @prosopo/api-express-router
|
|
2
2
|
|
|
3
|
+
## 3.0.6
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- 91bbe87: configure typecheck before bundle for vue packages
|
|
7
|
+
- 91bbe87: make typecheck script always recompile
|
|
8
|
+
- 346e092: NODE_ENV default to "development"
|
|
9
|
+
- 5d36e05: remove tsc --force
|
|
10
|
+
- Updated dependencies [828066d]
|
|
11
|
+
- Updated dependencies [91bbe87]
|
|
12
|
+
- Updated dependencies [3ef4fd2]
|
|
13
|
+
- Updated dependencies [91bbe87]
|
|
14
|
+
- Updated dependencies [346e092]
|
|
15
|
+
- Updated dependencies [5d36e05]
|
|
16
|
+
- @prosopo/api-route@2.6.10
|
|
17
|
+
- @prosopo/common@3.1.2
|
|
18
|
+
- @prosopo/config@3.1.3
|
|
19
|
+
|
|
20
|
+
## 3.0.5
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- eb71691: configure typecheck before bundle for vue packages
|
|
24
|
+
- eb71691: make typecheck script always recompile
|
|
25
|
+
- Updated dependencies [eb71691]
|
|
26
|
+
- Updated dependencies [eb71691]
|
|
27
|
+
- @prosopo/api-route@2.6.9
|
|
28
|
+
- @prosopo/common@3.1.1
|
|
29
|
+
- @prosopo/config@3.1.2
|
|
30
|
+
|
|
3
31
|
## 3.0.4
|
|
4
32
|
### Patch Changes
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/api-express-router",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
|
|
20
|
-
"build": "NODE_ENV=${NODE_ENV:-
|
|
20
|
+
"build": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
|
|
21
21
|
"build:tsc": "tsc --build --verbose",
|
|
22
|
-
"build:cjs": "NODE_ENV=${NODE_ENV:-
|
|
22
|
+
"build:cjs": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
|
|
23
23
|
"typecheck": "tsc --build --declaration --emitDeclarationOnly",
|
|
24
24
|
"test": "NODE_ENV=${NODE_ENV:-test}; npx vitest run --config ./vite.test.config.ts"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@prosopo/api-route": "2.6.
|
|
28
|
-
"@prosopo/common": "3.1.
|
|
27
|
+
"@prosopo/api-route": "2.6.10",
|
|
28
|
+
"@prosopo/common": "3.1.2",
|
|
29
29
|
"uuid": "11.1.0",
|
|
30
30
|
"zod": "3.23.8",
|
|
31
|
-
"@prosopo/config": "3.1.
|
|
31
|
+
"@prosopo/config": "3.1.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {},
|
|
34
34
|
"author": "PROSOPO LIMITED <info@prosopo.io>",
|