@prosopo/types-database 3.0.11 → 3.0.13

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +8 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @prosopo/types-database
2
2
 
3
+ ## 3.0.13
4
+ ### Patch Changes
5
+
6
+ - 828066d: remove empty test npm scripts, add missing npm test scripts
7
+ - 91bbe87: configure typecheck before bundle for vue packages
8
+ - 91bbe87: make typecheck script always recompile
9
+ - 346e092: NODE_ENV default to "development"
10
+ - 5d36e05: remove tsc --force
11
+ - Updated dependencies [828066d]
12
+ - Updated dependencies [df4e030]
13
+ - Updated dependencies [91bbe87]
14
+ - Updated dependencies [3ef4fd2]
15
+ - Updated dependencies [91bbe87]
16
+ - Updated dependencies [346e092]
17
+ - Updated dependencies [5d36e05]
18
+ - @prosopo/common@3.1.2
19
+ - @prosopo/types@3.0.6
20
+ - @prosopo/config@3.1.3
21
+ - @prosopo/user-access-policy@3.4.0
22
+
23
+ ## 3.0.12
24
+ ### Patch Changes
25
+
26
+ - eb71691: configure typecheck before bundle for vue packages
27
+ - eb71691: make typecheck script always recompile
28
+ - Updated dependencies [eb71691]
29
+ - Updated dependencies [eb71691]
30
+ - @prosopo/user-access-policy@3.3.2
31
+ - @prosopo/common@3.1.1
32
+ - @prosopo/types@3.0.5
33
+ - @prosopo/config@3.1.2
34
+
3
35
  ## 3.0.11
4
36
  ### Patch Changes
5
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosopo/types-database",
3
- "version": "3.0.11",
3
+ "version": "3.0.13",
4
4
  "description": "Types for prosopo database",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,11 +18,10 @@
18
18
  },
19
19
  "scripts": {
20
20
  "clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
21
- "build": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
21
+ "build": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
22
22
  "build:tsc": "tsc --build --verbose",
23
- "build:cjs": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
24
- "typecheck": "tsc --build --declaration --emitDeclarationOnly",
25
- "test": "echo no tests"
23
+ "build:cjs": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
24
+ "typecheck": "tsc --build --declaration --emitDeclarationOnly"
26
25
  },
27
26
  "repository": {
28
27
  "type": "git",
@@ -35,9 +34,9 @@
35
34
  },
36
35
  "homepage": "https://github.com/prosopo/captcha#readme",
37
36
  "dependencies": {
38
- "@prosopo/common": "3.1.0",
39
- "@prosopo/types": "3.0.4",
40
- "@prosopo/user-access-policy": "3.3.1",
37
+ "@prosopo/common": "3.1.2",
38
+ "@prosopo/types": "3.0.6",
39
+ "@prosopo/user-access-policy": "3.4.0",
41
40
  "@typegoose/auto-increment": "4.13.0",
42
41
  "axios": "1.10.0",
43
42
  "esbuild": "0.25.6",
@@ -45,7 +44,7 @@
45
44
  "mongodb": "6.9.0",
46
45
  "mongoose": "8.6.2",
47
46
  "zod": "3.23.8",
48
- "@prosopo/config": "3.1.1",
47
+ "@prosopo/config": "3.1.3",
49
48
  "openpgp": "5.11.3",
50
49
  "webpack-dev-server": "5.2.2"
51
50
  },