@tscircuit/props 0.0.587 → 0.0.588
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/README.md +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/lib/projectConfig.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -191508,7 +191508,7 @@ interface PlatformConfig {
|
|
|
191508
191508
|
}
|
|
191509
191509
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
191510
191510
|
|
|
191511
|
-
interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine"> {
|
|
191511
|
+
interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine" | "pcbDisabled" | "schematicDisabled"> {
|
|
191512
191512
|
}
|
|
191513
191513
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
191514
191514
|
|
package/dist/index.js
CHANGED
|
@@ -18678,7 +18678,9 @@ var projectConfig = platformConfigObject.pick({
|
|
|
18678
18678
|
printBoardInformationToSilkscreen: true,
|
|
18679
18679
|
includeBoardFiles: true,
|
|
18680
18680
|
snapshotsDir: true,
|
|
18681
|
-
defaultSpiceEngine: true
|
|
18681
|
+
defaultSpiceEngine: true,
|
|
18682
|
+
pcbDisabled: true,
|
|
18683
|
+
schematicDisabled: true
|
|
18682
18684
|
});
|
|
18683
18685
|
expectTypesMatch(true);
|
|
18684
18686
|
export {
|