@classytic/mongokit 3.3.2 → 3.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@classytic/mongokit",
3
- "version": "3.3.2",
3
+ "version": "3.4.0",
4
4
  "description": "Production-grade MongoDB repositories with zero dependencies - smart pagination, events, and plugins",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -93,21 +93,26 @@
93
93
  "test:watch": "vitest",
94
94
  "test:coverage": "vitest run --coverage",
95
95
  "typecheck": "tsc --noEmit",
96
- "prepublishOnly": "npm run build && npm run typecheck && npm test",
96
+ "lint": "biome check src/",
97
+ "lint:fix": "biome check src/ --write",
98
+ "format": "biome format src/ --write",
99
+ "check": "biome ci src/",
100
+ "prepublishOnly": "npm run check && npm run build && npm run typecheck && npm test",
97
101
  "publish:dry": "npm publish --dry-run --access public",
98
102
  "publish:npm": "npm publish --access public",
99
- "release": "npm run build && npm run typecheck && npm test && npm publish --access public",
103
+ "release": "npm run check && npm run build && npm run typecheck && npm test && npm publish --access public",
100
104
  "release:patch": "npm version patch && npm run release",
101
105
  "release:minor": "npm version minor && npm run release",
102
106
  "release:major": "npm version major && npm run release"
103
107
  },
104
108
  "devDependencies": {
109
+ "@biomejs/biome": "^2.4.10",
105
110
  "@types/node": "^22.0.0",
106
111
  "@vitest/coverage-v8": "^3.2.4",
107
112
  "mongodb-memory-server": "^10.4.3",
108
113
  "mongoose": "^9.1.3",
109
- "tsdown": "^0.20.3",
114
+ "tsdown": "^0.21.7",
110
115
  "typescript": "^5.7.0",
111
116
  "vitest": "^3.2.4"
112
117
  }
113
- }
118
+ }
@@ -1,18 +0,0 @@
1
- //#region \0rolldown/runtime.js
2
- var __defProp = Object.defineProperty;
3
- var __exportAll = (all, no_symbols) => {
4
- let target = {};
5
- for (var name in all) {
6
- __defProp(target, name, {
7
- get: all[name],
8
- enumerable: true
9
- });
10
- }
11
- if (!no_symbols) {
12
- __defProp(target, Symbol.toStringTag, { value: "Module" });
13
- }
14
- return target;
15
- };
16
-
17
- //#endregion
18
- export { __exportAll as t };