@decaf-ts/for-pouch 0.3.25 → 0.3.26
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 +5 -9
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.25";
|
|
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.25";
|
|
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.25";
|
|
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.25";
|
|
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.26",
|
|
4
4
|
"description": "decaf-ts persistence adapter for PouchDB",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -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
|
|
20
|
-
"build:prod": "npx build
|
|
19
|
+
"build": "npx decaf build --dev",
|
|
20
|
+
"build:prod": "npx decaf build --prod",
|
|
21
21
|
"docker:build": "npm run docker:build-booter && npm run docker:build-couchdb",
|
|
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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"clean-publish": "npx clean-publish",
|
|
36
36
|
"drawings": "for FILE in workdocs/drawings/*.drawio; do echo \"converting $FILE to image...\" && docker run --rm -v $(pwd):/data rlespinasse/drawio-export --format png $FILE; done && cp -rf workdocs/drawings/export/* workdocs/resources/",
|
|
37
37
|
"uml": "cd workdocs/uml && for FILE in ./*.puml; do docker run --rm -v $(pwd):/work -w /work miy4/plantuml -DPLANTUML_LIMIT_SIZE=8192 -tpng $FILE; done && cd ../.. && cp -fr workdocs/uml/*.png workdocs/resources/",
|
|
38
|
-
"docs": "npx rimraf ./docs && mkdir docs && npx build
|
|
38
|
+
"docs": "npx rimraf ./docs && mkdir docs && npx decaf build --docs",
|
|
39
39
|
"publish-docs": "docker run -it --rm --user $(id -u):$(id -g) -v \"$(pwd)/workdocs/confluence:/content\" -e ATLASSIAN_API_TOKEN=$(cat .confluence-token) ghcr.io/markdown-confluence/publish:latest",
|
|
40
40
|
"repo:init": "codex exec \"$(cat ./.codex/prompts/repo-setup.md)\nbase_path is `./`, initialize the repository\"",
|
|
41
41
|
"repo:setup": "codex exec \"$(cat ./.codex/prompts/repo-setup.md)\nbase_path is ./\"",
|
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
},
|
|
78
78
|
"homepage": "https://github.com/decaf-ts/for-pouch#readme",
|
|
79
79
|
"devDependencies": {
|
|
80
|
+
"@decaf-ts/cli": "latest",
|
|
80
81
|
"@decaf-ts/for-nano": "latest",
|
|
81
82
|
"@decaf-ts/utils": "latest",
|
|
82
83
|
"@types/jest": "^30.0.0",
|
|
@@ -105,10 +106,5 @@
|
|
|
105
106
|
"pouchdb-adapter-websql": "^7.0.0",
|
|
106
107
|
"pouchdb-mapreduce": "^9.0.0",
|
|
107
108
|
"pouchdb-replication": "^9.0.0"
|
|
108
|
-
},
|
|
109
|
-
"overrides": {
|
|
110
|
-
"minimatch": "^10.2.3",
|
|
111
|
-
"test-exclude": "^7.0.1",
|
|
112
|
-
"serialize-javascript": "^7.0.3"
|
|
113
109
|
}
|
|
114
110
|
}
|