@decaf-ts/for-nano 0.5.13 → 0.5.14
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 +4 -8
package/lib/esm/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from "./adapter";
|
|
|
13
13
|
* @const VERSION
|
|
14
14
|
* @memberOf module:for-nano
|
|
15
15
|
*/
|
|
16
|
-
export declare const VERSION = "0.5.
|
|
16
|
+
export declare const VERSION = "0.5.13";
|
|
17
17
|
/**
|
|
18
18
|
* @description Package version identifier
|
|
19
19
|
* @summary Stores the current package version string for the for-nano module
|
package/lib/esm/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export * from "./adapter.js";
|
|
|
18
18
|
* @const VERSION
|
|
19
19
|
* @memberOf module:for-nano
|
|
20
20
|
*/
|
|
21
|
-
export const VERSION = "0.5.
|
|
21
|
+
export const VERSION = "0.5.13";
|
|
22
22
|
/**
|
|
23
23
|
* @description Package version identifier
|
|
24
24
|
* @summary Stores the current package version string for the for-nano module
|
package/lib/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ __exportStar(require("./adapter.cjs"), exports);
|
|
|
35
35
|
* @const VERSION
|
|
36
36
|
* @memberOf module:for-nano
|
|
37
37
|
*/
|
|
38
|
-
exports.VERSION = "0.5.
|
|
38
|
+
exports.VERSION = "0.5.13";
|
|
39
39
|
/**
|
|
40
40
|
* @description Package version identifier
|
|
41
41
|
* @summary Stores the current package version string for the for-nano module
|
package/lib/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from "./adapter";
|
|
|
13
13
|
* @const VERSION
|
|
14
14
|
* @memberOf module:for-nano
|
|
15
15
|
*/
|
|
16
|
-
export declare const VERSION = "0.5.
|
|
16
|
+
export declare const VERSION = "0.5.13";
|
|
17
17
|
/**
|
|
18
18
|
* @description Package version identifier
|
|
19
19
|
* @summary Stores the current package version string for the for-nano module
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/for-nano",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.14",
|
|
4
4
|
"description": "decaf-ts persistence adapter for CouchDB via nano",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,7 +17,7 @@
|
|
|
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
19
|
"build": "npx build-scripts --dev",
|
|
20
|
-
"build:prod": "npx build
|
|
20
|
+
"build:prod": "npx decaf build --prod",
|
|
21
21
|
"test": "jest --runInBand --coverage --detectOpenHandles",
|
|
22
22
|
"test:unit": "jest --testPathPatterns=\"/tests/unit\" --passWithNoTests --detectOpenHandles",
|
|
23
23
|
"test:integration": "jest --testPathPatterns=\"/tests/(integration)\" --passWithNoTests --detectOpenHandles",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"clean-publish": "npx clean-publish",
|
|
33
33
|
"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/",
|
|
34
34
|
"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/",
|
|
35
|
-
"docs": "npx rimraf ./docs && mkdir docs && npx build
|
|
35
|
+
"docs": "npx rimraf ./docs && mkdir docs && npx decaf build --docs",
|
|
36
36
|
"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",
|
|
37
37
|
"repo:init": "codex exec \"$(cat ./.codex/prompts/repo-setup.md)\nbase_path is `./`, initialize the repository\"",
|
|
38
38
|
"repo:setup": "codex exec \"$(cat ./.codex/prompts/repo-setup.md)\nbase_path is ./\"",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
},
|
|
75
75
|
"homepage": "https://github.com/decaf-ts/for-couchdb#readme",
|
|
76
76
|
"devDependencies": {
|
|
77
|
+
"@decaf-ts/cli": "latest",
|
|
77
78
|
"@decaf-ts/utils": "latest",
|
|
78
79
|
"@types/jest": "^30.0.0"
|
|
79
80
|
},
|
|
@@ -87,10 +88,5 @@
|
|
|
87
88
|
"@decaf-ts/logging": "latest",
|
|
88
89
|
"@decaf-ts/transactional-decorators": "latest",
|
|
89
90
|
"nano": "^10.1.4"
|
|
90
|
-
},
|
|
91
|
-
"overrides": {
|
|
92
|
-
"minimatch": "^10.2.3",
|
|
93
|
-
"test-exclude": "^7.0.1",
|
|
94
|
-
"serialize-javascript": "^7.0.3"
|
|
95
91
|
}
|
|
96
92
|
}
|