@plasmicapp/cli 0.1.328 → 0.1.329
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/package.json +2 -2
- package/src/api.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.329",
|
|
4
4
|
"description": "plasmic cli for syncing local code with Plasmic designs",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=12"
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"wrap-ansi": "^7.0.0",
|
|
84
84
|
"yargs": "^15.4.1"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "a7f463a560be71d59b6d8dadbe63bb92a57c231e"
|
|
87
87
|
}
|
package/src/api.ts
CHANGED
|
@@ -66,6 +66,7 @@ export interface ProjectMetaBundle {
|
|
|
66
66
|
jsBundleThemes?: JsBundleTheme[];
|
|
67
67
|
globalContextBundle?: GlobalContextBundle;
|
|
68
68
|
splitsProviderBundle?: SplitsProviderBundle;
|
|
69
|
+
// A list of files that are exported from the project and *can* be used by the user
|
|
69
70
|
reactWebExportedFiles?: Array<{
|
|
70
71
|
fileName: string;
|
|
71
72
|
content: string;
|