@intentius/chant-lexicon-forgejo 0.20.0 → 0.22.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/dist/dialect.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/dialect.ts +2 -2
package/dist/dialect.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialect.d.ts","sourceRoot":"","sources":["../src/dialect.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"dialect.d.ts","sourceRoot":"","sources":["../src/dialect.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAA2C,KAAK,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAgBvG;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAKxD,CAAC;AAEF,MAAM,WAAW,qBAAqB;IACpC,mFAAmF;IACnF,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACtC,uEAAuE;IACvE,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACnC,sEAAsE;IACtE,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IAClC,iEAAiE;IACjE,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAuFD,MAAM,WAAW,qBAAqB;IACpC,qEAAqE;IACrE,KAAK,EAAE,OAAO,CAAC;IACf,8EAA8E;IAC9E,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAED;;;;;GAKG;AACH,wBAAgB,uBAAuB,CACrC,GAAG,EAAE,OAAO,EACZ,OAAO,GAAE,qBAA0B,GAClC,qBAAqB,CAKvB;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,EACjC,OAAO,GAAE,qBAA0B,GAClC,oBAAoB,CAWtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-forgejo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "Forgejo / Codeberg / Gitea Actions lexicon for chant — a thin GitHub Actions dialect",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://intentius.io/chant",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"typescript": "^5.9.3"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@intentius/chant": "^0.
|
|
57
|
-
"@intentius/chant-lexicon-github": "^0.
|
|
56
|
+
"@intentius/chant": "^0.22.0",
|
|
57
|
+
"@intentius/chant-lexicon-github": "^0.22.0"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && find dist -type f \\( -name \"*.js\" -o -name \"*.js.map\" \\) -delete",
|
package/src/dialect.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* transform faithful: the github serializer still does the actual emission.
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
|
-
import { DECLARABLE_MARKER, type Declarable } from "@intentius/chant/declarable";
|
|
20
|
+
import { DECLARABLE_MARKER, isResourceDeclarable, type Declarable } from "@intentius/chant/declarable";
|
|
21
21
|
import { resolveActionRef } from "./actions";
|
|
22
22
|
|
|
23
23
|
/**
|
|
@@ -134,7 +134,7 @@ function transformValue(value: unknown, ctx: TransformCtx): unknown {
|
|
|
134
134
|
function cloneDeclarable(entity: Declarable, ctx: TransformCtx): Declarable {
|
|
135
135
|
const descriptors = Object.getOwnPropertyDescriptors(entity);
|
|
136
136
|
const clone = Object.create(Object.getPrototypeOf(entity), descriptors) as Declarable;
|
|
137
|
-
const rawProps = (entity
|
|
137
|
+
const rawProps = isResourceDeclarable(entity) ? entity.props : undefined;
|
|
138
138
|
const newProps = transformValue(rawProps, ctx);
|
|
139
139
|
Object.defineProperty(clone, "props", {
|
|
140
140
|
value: newProps,
|