@decaf-ts/for-pouch 0.3.22 → 0.3.23
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/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +10 -5
package/lib/esm/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from "./adapter";
|
|
|
13
13
|
* @const VERSION
|
|
14
14
|
* @memberOf module:for-pouch
|
|
15
15
|
*/
|
|
16
|
-
export declare const VERSION = "0.3.
|
|
16
|
+
export declare const VERSION = "0.3.22";
|
|
17
17
|
/**
|
|
18
18
|
* @description Package version identifier
|
|
19
19
|
* @summary Stores the current version of the for-pouch package
|
package/lib/esm/index.js
CHANGED
|
@@ -17,7 +17,7 @@ export * from "./adapter.js";
|
|
|
17
17
|
* @const VERSION
|
|
18
18
|
* @memberOf module:for-pouch
|
|
19
19
|
*/
|
|
20
|
-
export const VERSION = "0.3.
|
|
20
|
+
export const VERSION = "0.3.22";
|
|
21
21
|
/**
|
|
22
22
|
* @description Package version identifier
|
|
23
23
|
* @summary Stores the current version of the for-pouch package
|
package/lib/index.cjs
CHANGED
|
@@ -34,7 +34,7 @@ __exportStar(require("./adapter.cjs"), exports);
|
|
|
34
34
|
* @const VERSION
|
|
35
35
|
* @memberOf module:for-pouch
|
|
36
36
|
*/
|
|
37
|
-
exports.VERSION = "0.3.
|
|
37
|
+
exports.VERSION = "0.3.22";
|
|
38
38
|
/**
|
|
39
39
|
* @description Package version identifier
|
|
40
40
|
* @summary Stores the current version of the for-pouch package
|
package/lib/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from "./adapter";
|
|
|
13
13
|
* @const VERSION
|
|
14
14
|
* @memberOf module:for-pouch
|
|
15
15
|
*/
|
|
16
|
-
export declare const VERSION = "0.3.
|
|
16
|
+
export declare const VERSION = "0.3.22";
|
|
17
17
|
/**
|
|
18
18
|
* @description Package version identifier
|
|
19
19
|
* @summary Stores the current version of the for-pouch package
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/for-pouch",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "decaf-ts persistence adapter for PouchDB",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"docker:build-booter": "docker build -t ghcr.io/decaf-ts/couchdb-booter:$(cat package.json | jq -r '.version') -t ghcr.io/decaf-ts/couchdb-booter:latest -f ./docker/Dockerfile-booter ./docker",
|
|
23
23
|
"docker:build-couchdb": "docker build -t ghcr.io/decaf-ts/couchdb:$(cat package.json | jq -r '.version') -t ghcr.io/decaf-ts/couchdb:latest -f ./docker/Dockerfile-couchdb ./docker",
|
|
24
24
|
"test": "jest --runInBand --coverage --detectOpenHandles",
|
|
25
|
-
"test:unit": "jest --
|
|
26
|
-
"test:integration": "jest --
|
|
27
|
-
"test:all": "jest --
|
|
25
|
+
"test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
|
|
26
|
+
"test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
|
|
27
|
+
"test:all": "jest --testPathPatterns=\"/tests\" --passWithNoTests",
|
|
28
28
|
"test:circular": "dpdm -T --no-warning --no-tree ./src/index.ts",
|
|
29
|
-
"coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.
|
|
29
|
+
"coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.cjs",
|
|
30
30
|
"lint": "eslint .",
|
|
31
31
|
"lint-fix": "eslint --fix .",
|
|
32
32
|
"prepare-pr": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@decaf-ts/for-nano": "latest",
|
|
81
81
|
"@decaf-ts/utils": "latest",
|
|
82
|
+
"@types/jest": "^30.0.0",
|
|
82
83
|
"@types/pouchdb": "^6.4.2",
|
|
83
84
|
"@types/pouchdb-core": "^7.0.15",
|
|
84
85
|
"@types/transform-pouch": "^1.0.6"
|
|
@@ -104,5 +105,9 @@
|
|
|
104
105
|
"pouchdb-adapter-websql": "^7.0.0",
|
|
105
106
|
"pouchdb-mapreduce": "^9.0.0",
|
|
106
107
|
"pouchdb-replication": "^9.0.0"
|
|
108
|
+
},
|
|
109
|
+
"overrides": {
|
|
110
|
+
"minimatch": "^10.2.2",
|
|
111
|
+
"test-exclude": "7.0.1"
|
|
107
112
|
}
|
|
108
113
|
}
|