@plasmicapp/cli 0.1.302 → 0.1.304
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 +1 -1
- package/dist/lib.d.ts +1 -0
- package/dist/lib.js +384 -287
- package/package.json +2 -2
- package/src/actions/localization-strings.ts +1 -1
- package/src/lib.ts +4 -0
package/dist/index.js
CHANGED
|
@@ -739542,7 +739542,7 @@ Please provide the API tokens with the format PROJECT_ID:PROJECT_API_TOKEN`
|
|
|
739542
739542
|
if (existsBuffered(output)) {
|
|
739543
739543
|
const overwrite = await confirmWithUser(
|
|
739544
739544
|
`File ${output} already exists. Do you want to overwrite?`,
|
|
739545
|
-
opts.forceOverwrite
|
|
739545
|
+
opts.forceOverwrite || opts.yes
|
|
739546
739546
|
);
|
|
739547
739547
|
if (!overwrite) {
|
|
739548
739548
|
throw new HandledError(
|
package/dist/lib.d.ts
CHANGED
|
@@ -8,3 +8,4 @@ export { WatchArgs, watchProjects } from "./actions/watch";
|
|
|
8
8
|
export { logger } from "./deps";
|
|
9
9
|
export { HandledError, handleError } from "./utils/error";
|
|
10
10
|
export { Metadata, setMetadataEnv } from "./utils/get-context";
|
|
11
|
+
export { localizationStrings, LocalizationStringsArgs, } from "./actions/localization-strings";
|