zixulu 1.73.6 → 1.73.8
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.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/test.d.ts +1 -0
- package/package.json +1 -1
- package/src/utils/addPrettier.ts +1 -0
- package/src/utils/syncAgentRules.ts +2 -3
package/dist/index.js
CHANGED
|
@@ -1395,6 +1395,7 @@ generated
|
|
|
1395
1395
|
.next
|
|
1396
1396
|
.vscode
|
|
1397
1397
|
.generated
|
|
1398
|
+
**/components/ui/**
|
|
1398
1399
|
`;
|
|
1399
1400
|
const prettierConfig = `// @ts-check
|
|
1400
1401
|
|
|
@@ -4242,8 +4243,7 @@ async function sortPackageJson() {
|
|
|
4242
4243
|
async function asyncAgentRules() {
|
|
4243
4244
|
try {
|
|
4244
4245
|
const packageJson = await readPackageJson();
|
|
4245
|
-
packageJson.scripts
|
|
4246
|
-
packageJson.scripts.ucr = "npx zixulu acr";
|
|
4246
|
+
if (packageJson?.scripts?.ucr === "npx zixulu acr") packageJson.scripts.ucr = void 0;
|
|
4247
4247
|
await writePackageJson({
|
|
4248
4248
|
data: packageJson
|
|
4249
4249
|
});
|
|
@@ -4289,7 +4289,7 @@ async function asyncAgentRules() {
|
|
|
4289
4289
|
});
|
|
4290
4290
|
const orders = [
|
|
4291
4291
|
"base.mdc",
|
|
4292
|
-
"
|
|
4292
|
+
"react.mdc",
|
|
4293
4293
|
"api.mdc",
|
|
4294
4294
|
"next.mdc"
|
|
4295
4295
|
];
|