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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.1.41
4
+
5
+ ### Improvements
6
+
7
+ - Update `init.ts`.
8
+
9
+ ## 5.1.40
10
+
11
+ ### Improvements
12
+
13
+ - Prepare the v5.1.40 release.
14
+ - Update `CHANGELOG.md` for v5.1.39.
15
+
3
16
  ## 5.1.39
4
17
 
5
18
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.39",
3
+ "version": "5.1.41",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A Node.js fullstack framework",
6
6
  "keywords": [
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
- copyFileSync(resolve(ROOT_DIR, 'vona/package.original.json'), pkgPath);
150
- exec("pnpm --dir './vona' install --no-frozen-lockfile");
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
- copyFileSync(resolve(ROOT_DIR, 'zova/package.original.json'), pkgPath);
163
- exec("pnpm --dir './zova' install --no-frozen-lockfile");
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