@decaf-ts/for-couchdb 0.5.0 → 0.5.1

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.
@@ -19,7 +19,7 @@ export * from "./views";
19
19
  * @summary The version string of the for-couchdb package
20
20
  * @const VERSION
21
21
  */
22
- export declare const VERSION = "0.4.40";
22
+ export declare const VERSION = "0.5.0";
23
23
  /**
24
24
  * @description Stores the current package name
25
25
  * @summary The version string of the for-couchdb package
package/lib/esm/index.js CHANGED
@@ -20,7 +20,7 @@ export * from "./views/index.js";
20
20
  * @summary The version string of the for-couchdb package
21
21
  * @const VERSION
22
22
  */
23
- export const VERSION = "0.4.40";
23
+ export const VERSION = "0.5.0";
24
24
  /**
25
25
  * @description Stores the current package name
26
26
  * @summary The version string of the for-couchdb package
package/lib/index.cjs CHANGED
@@ -37,7 +37,7 @@ __exportStar(require("./views/index.cjs"), exports);
37
37
  * @summary The version string of the for-couchdb package
38
38
  * @const VERSION
39
39
  */
40
- exports.VERSION = "0.4.40";
40
+ exports.VERSION = "0.5.0";
41
41
  /**
42
42
  * @description Stores the current package name
43
43
  * @summary The version string of the for-couchdb package
package/lib/index.d.ts CHANGED
@@ -19,7 +19,7 @@ export * from "./views";
19
19
  * @summary The version string of the for-couchdb package
20
20
  * @const VERSION
21
21
  */
22
- export declare const VERSION = "0.4.40";
22
+ export declare const VERSION = "0.5.0";
23
23
  /**
24
24
  * @description Stores the current package name
25
25
  * @summary The version string of the for-couchdb package
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-couchdb",
3
- "version": "0.5.0",
4
- "description": "template for ts projects",
3
+ "version": "0.5.1",
4
+ "description": "decaf-ts couchdb wrappers",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "require": "./lib/index.cjs",
@@ -16,8 +16,8 @@
16
16
  "set-git-auth": "git config url.\"https://api:$(cat .token)@github.com/\".insteadOf \"https://github.com/\" && git config url.\"https://ssh:$(cat .token)@github.com/\".insteadOf \"ssh://git@github.com/\" && git config url.\"https://git:$(cat .token)@github.com/\".insteadOf \"git@github.com:\"",
17
17
  "flash-forward": "npx npm-check-updates -u && npm run do-install",
18
18
  "reset": "rm -rf * && git checkout . && git pull && npm run do-install",
19
- "build": "npx build-scripts --dev",
20
- "build:prod": "npx build-scripts --prod",
19
+ "build": "npx decaf build --dev",
20
+ "build:prod": "npx decaf build --prod",
21
21
  "test": "jest --runInBand --coverage --detectOpenHandles --passWithNoTests",
22
22
  "test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
23
23
  "test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
@@ -83,6 +83,7 @@
83
83
  },
84
84
  "homepage": "https://github.com/decaf-ts/for-couchdb#readme",
85
85
  "devDependencies": {
86
+ "@decaf-ts/cli": "latest",
86
87
  "@decaf-ts/utils": "latest",
87
88
  "@types/jest": "^30.0.0",
88
89
  "@types/node": "^24.5.0"
@@ -95,9 +96,5 @@
95
96
  "@decaf-ts/injectable-decorators": "latest",
96
97
  "@decaf-ts/logging": "latest",
97
98
  "@decaf-ts/transactional-decorators": "latest"
98
- },
99
- "overrides": {
100
- "minimatch": "^10.2.2",
101
- "test-exclude": "7.0.1"
102
99
  }
103
100
  }