Skip to content

Commit e6230a1

Browse files
feat: update depenencies WIP
1 parent 37c92c2 commit e6230a1

File tree

3 files changed

+24
-61
lines changed

3 files changed

+24
-61
lines changed

packages/qwik/src/cli/migrate-v2/run-migration.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ import type { AppCommand } from '../utils/app-command';
33
import { bgMagenta } from 'kleur/colors';
44
import { bye } from '../utils/utils';
55
import { replacePackage } from './replace-package';
6+
import { updateDependencies } from './update-dependencies';
67

78
export async function runV2Migration(app: AppCommand) {
89
intro(
910
`✨ ${bgMagenta(' This command will migrate your Qwik application from v1 to v2 \n')}` +
1011
`This includes the following: \n` +
11-
// TODO: package names
12+
// TODO: package names
1213
` - "@builder.io/qwik", "@builder.io/qwik-city" packages will be rescoped to "@qwik.dev/core" and "@qwik.dev/qwik-city" \n` +
1314
` - related dependencies will be updated \n`
1415
);
@@ -22,11 +23,11 @@ export async function runV2Migration(app: AppCommand) {
2223
}
2324

2425
try {
25-
replacePackage('@builder.io/qwik', '@qwik.dev/qwik');
26-
replacePackage('@builder.io/qwik-city', '@qwik.dev/city');
26+
replacePackage('@builder.io/qwik', '@qwik.dev/qwik');
27+
replacePackage('@builder.io/qwik-city', '@qwik.dev/city');
28+
await updateDependencies();
2729
} catch (error) {
2830
console.log(error);
29-
throw error
31+
throw error;
3032
}
31-
3233
}

packages/qwik/src/cli/migrate-v2/tools/visit-not-ignored-files.spec.ts

-56
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { getPackageManager, readPackageJson } from './../utils/utils';
2+
import { installDeps } from '../utils/install-deps';
3+
4+
export async function updateDependencies() {
5+
// TODO: workspaceRoot
6+
const packageJson = await readPackageJson(process.cwd());
7+
// TODO: should come from elsewhere?
8+
const newVersion = '2.0.0';
9+
(packageJson.devDependencies ??= {})['@qwik.dev/qwik'] = newVersion;
10+
(packageJson.devDependencies ??= {})['@qwik.dev/city'] = newVersion;
11+
delete packageJson.dependencies?.['@builder.io/qwik'];
12+
delete packageJson.dependencies?.['@builder.io/qwik-city'];
13+
const { install } = installDeps(getPackageManager(), process.cwd());
14+
const passed = await install;
15+
if (!passed) {
16+
throw new Error('Failed to install dependencies');
17+
}
18+
}

0 commit comments

Comments
 (0)