@batijs/cli 0.0.676 → 0.0.677
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/boilerplates/@batijs/shared-agents/hooks/asset-boilerplates/shared-agents/compose.mjs
CHANGED
|
@@ -14,12 +14,15 @@ function composeSkills(isSelected) {
|
|
|
14
14
|
}));
|
|
15
15
|
}
|
|
16
16
|
function renderSkillMd(flag, label, llms) {
|
|
17
|
-
const description = `${label} documentation —
|
|
17
|
+
const description = `${label} documentation index — a compact overview of ${possessive(label)} docs. Consider consulting it, e.g. when using uncommon ${label} APIs or when stuck on ${article(label)} ${label} problem.`;
|
|
18
18
|
return `---\nname: ${yamlString(flag)}\ndescription: ${yamlString(description)}\n---\n\nSee ${llms}\n`;
|
|
19
19
|
}
|
|
20
20
|
function article(label) {
|
|
21
21
|
return /^[aeiou]/i.test(label) ? "an" : "a";
|
|
22
22
|
}
|
|
23
|
+
function possessive(label) {
|
|
24
|
+
return /s$/i.test(label) ? `${label}'` : `${label}'s`;
|
|
25
|
+
}
|
|
23
26
|
function yamlString(s) {
|
|
24
27
|
return `"${s.replace(/\\/g, "\\\\").replace(/"/g, "\\\"")}"`;
|
|
25
28
|
}
|
package/dist/index.js
CHANGED
|
@@ -2638,7 +2638,7 @@ function kebabCase(str, joiner) {
|
|
|
2638
2638
|
//#endregion
|
|
2639
2639
|
//#region package.json
|
|
2640
2640
|
var name = "@batijs/cli";
|
|
2641
|
-
var version = "0.0.
|
|
2641
|
+
var version = "0.0.677";
|
|
2642
2642
|
var description = "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want";
|
|
2643
2643
|
//#endregion
|
|
2644
2644
|
//#region rules.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batijs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.677",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"check-types": "tsc --noEmit",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"repository": "https://github.com/vikejs/bati",
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@batijs/build": "0.0.
|
|
17
|
-
"@batijs/compile": "0.0.
|
|
16
|
+
"@batijs/build": "0.0.677",
|
|
17
|
+
"@batijs/compile": "0.0.677",
|
|
18
18
|
"@inquirer/prompts": "^8.5.2",
|
|
19
19
|
"@types/node": "^20.19.37",
|
|
20
20
|
"@types/which": "^3.0.4",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"vite": "^8.2.1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@batijs/core": "0.0.
|
|
34
|
-
"@batijs/features": "0.0.
|
|
33
|
+
"@batijs/core": "0.0.677",
|
|
34
|
+
"@batijs/features": "0.0.677"
|
|
35
35
|
},
|
|
36
36
|
"bin": "./cli.js",
|
|
37
37
|
"exports": {
|