@builder.io/dev-tools 1.19.13-dev.202601081716.a4e0f181d → 1.19.13-dev.202601081900.a78f70f0c
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/cli/index.cjs +15 -14
- package/cli/index.cjs.map +2 -2
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/utils/rules-discovery.d.ts +2 -2
- package/types/common/utils.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -7,8 +7,8 @@ import type { CustomInstruction } from "$/ai-utils";
|
|
|
7
7
|
/**
|
|
8
8
|
* Get custom instructions from the filesystem
|
|
9
9
|
* Searches for instruction files in:
|
|
10
|
-
* - .cursor/rules/ - Rule files (.mdc
|
|
11
|
-
* - .builder/rules/ - Rule files (.
|
|
10
|
+
* - .cursor/rules/ - Rule files (.mdc or RULE.md only)
|
|
11
|
+
* - .builder/rules/ - Rule files (.md, .mdx, .mdc)
|
|
12
12
|
* - .claude/skills/ - SKILL.md files only (subdirectories supported)
|
|
13
13
|
* - .builder/skills/ - SKILL.md files only (subdirectories supported)
|
|
14
14
|
* - .cursorrules, .builderrules, .windsurfrules
|
package/types/common/utils.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare function clone<T>(obj: T): T;
|
|
|
19
19
|
export declare function shouldSkipFolder(sys: DevToolsSys, skipFolders: Set<string>, fileName: string): boolean;
|
|
20
20
|
export declare function getPackageManager(): string;
|
|
21
21
|
export declare function isWindows(): boolean;
|
|
22
|
-
export declare function builderNpxPackage(): "
|
|
22
|
+
export declare function builderNpxPackage(): "@builder.io/agent" | "\"@builder.io/dev-tools\"" | "builder.io";
|
|
23
23
|
/**
|
|
24
24
|
* Sanitizes a component name for use in filesystem paths by replacing invalid characters with underscores
|
|
25
25
|
* @param name The component name to sanitize
|