@jay-framework/compiler-shared 0.21.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/index.d.ts +7 -9
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -644,15 +644,12 @@ interface PluginManifest {
|
|
|
644
644
|
handler: string;
|
|
645
645
|
description?: string;
|
|
646
646
|
}>;
|
|
647
|
-
/**
|
|
648
|
-
setup?:
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
/** Human-readable description of what setup does */
|
|
654
|
-
description?: string;
|
|
655
|
-
};
|
|
647
|
+
/** Export name (NPM) or relative path (local) to setup handler — `jay-stack setup` */
|
|
648
|
+
setup?: string;
|
|
649
|
+
/** Export name for agent-kit handler — `jay-stack agent-kit` (add-menu, references, skills) */
|
|
650
|
+
agentkit?: string;
|
|
651
|
+
/** Human-readable description of what setup validates or configures */
|
|
652
|
+
description?: string;
|
|
656
653
|
}
|
|
657
654
|
/**
|
|
658
655
|
* Action entry in plugin.yaml.
|
|
@@ -768,6 +765,7 @@ interface JayHtmlValidationContext {
|
|
|
768
765
|
body: any;
|
|
769
766
|
filePath: string;
|
|
770
767
|
projectRoot: string;
|
|
768
|
+
css?: string;
|
|
771
769
|
head?: JayHtmlHeadMeta;
|
|
772
770
|
contract?: {
|
|
773
771
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jay-framework/compiler-shared",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"author": "",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@jay-framework/component": "^0.
|
|
29
|
-
"@jay-framework/runtime": "^0.
|
|
30
|
-
"@jay-framework/secure": "^0.
|
|
31
|
-
"@jay-framework/typescript-bridge": "^0.
|
|
28
|
+
"@jay-framework/component": "^0.22.0",
|
|
29
|
+
"@jay-framework/runtime": "^0.22.0",
|
|
30
|
+
"@jay-framework/secure": "^0.22.0",
|
|
31
|
+
"@jay-framework/typescript-bridge": "^0.22.0",
|
|
32
32
|
"@types/js-yaml": "^4.0.9",
|
|
33
33
|
"change-case": "^4.1.2",
|
|
34
34
|
"js-beautify": "^1.14.11",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@caiogondim/strip-margin": "^1.0.0",
|
|
44
|
-
"@jay-framework/dev-environment": "^0.
|
|
44
|
+
"@jay-framework/dev-environment": "^0.22.0",
|
|
45
45
|
"@testing-library/jest-dom": "^6.2.0",
|
|
46
46
|
"@types/js-beautify": "^1",
|
|
47
47
|
"@types/node": "^20.11.5",
|