easy-soft-develop 2.1.148 → 2.1.150
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
CHANGED
|
@@ -136,12 +136,12 @@ function adjustMainPackageJsonScript({ scripts }) {
|
|
|
136
136
|
developInitialEnvironmentConfig.publishWithOtp || false;
|
|
137
137
|
|
|
138
138
|
const publishItemCollection = {};
|
|
139
|
-
|
|
139
|
+
let publishItemScript = [];
|
|
140
140
|
|
|
141
141
|
publishPackageNameList.map((o) => {
|
|
142
142
|
const scriptItem = `npx easy-soft-develop publish --packages ${o}${publishWithOtp ? ' --otp true' : ''}`;
|
|
143
143
|
|
|
144
|
-
publishItemScript
|
|
144
|
+
publishItemScript = [...publishItemScript, scriptItem];
|
|
145
145
|
|
|
146
146
|
publishItemCollection[`z:publish:npm-${o}`] = scriptItem;
|
|
147
147
|
});
|