cabloy 5.1.39 → 5.1.41
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/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/scripts/init.ts +8 -8
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/scripts/init.ts
CHANGED
|
@@ -145,10 +145,10 @@ function initVona(): void {
|
|
|
145
145
|
// eslint-disable-next-line
|
|
146
146
|
console.log('[init] Initializing vona...');
|
|
147
147
|
const pkgPath = resolve(ROOT_DIR, 'vona/package.json');
|
|
148
|
-
if (!existsSync(pkgPath)) {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}
|
|
148
|
+
// if (!existsSync(pkgPath)) {
|
|
149
|
+
copyFileSync(resolve(ROOT_DIR, 'vona/package.original.json'), pkgPath);
|
|
150
|
+
exec("pnpm --dir './vona' install --no-frozen-lockfile");
|
|
151
|
+
// }
|
|
152
152
|
exec('npm run vona :tools:deps');
|
|
153
153
|
}
|
|
154
154
|
|
|
@@ -158,10 +158,10 @@ function initZova(): void {
|
|
|
158
158
|
// eslint-disable-next-line
|
|
159
159
|
console.log('[init] Initializing zova...');
|
|
160
160
|
const pkgPath = resolve(ROOT_DIR, 'zova/package.json');
|
|
161
|
-
if (!existsSync(pkgPath)) {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
}
|
|
161
|
+
// if (!existsSync(pkgPath)) {
|
|
162
|
+
copyFileSync(resolve(ROOT_DIR, 'zova/package.original.json'), pkgPath);
|
|
163
|
+
exec("pnpm --dir './zova' install --no-frozen-lockfile");
|
|
164
|
+
// }
|
|
165
165
|
exec('npm run zova :tools:deps');
|
|
166
166
|
}
|
|
167
167
|
|