@corva/create-app 0.111.0 → 0.111.1
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.
|
@@ -98,13 +98,12 @@ const resolveDataToZipUiApp = async (itemsToZip = [], { options, pkg, dirName, m
|
|
|
98
98
|
|
|
99
99
|
itemsToSave.push({
|
|
100
100
|
name: tmpPackageForSourceName,
|
|
101
|
-
content:
|
|
102
|
-
|
|
103
|
-
{
|
|
104
|
-
build:
|
|
101
|
+
content: {
|
|
102
|
+
...pkg,
|
|
103
|
+
scripts: {
|
|
104
|
+
build: pkg.scripts?.build,
|
|
105
105
|
},
|
|
106
|
-
|
|
107
|
-
),
|
|
106
|
+
},
|
|
108
107
|
});
|
|
109
108
|
|
|
110
109
|
const itemsToRemove = [tmpPackageForSourceName];
|