File tree 3 files changed +24
-61
lines changed
packages/qwik/src/cli/migrate-v2
3 files changed +24
-61
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,13 @@ import type { AppCommand } from '../utils/app-command';
3
3
import { bgMagenta } from 'kleur/colors' ;
4
4
import { bye } from '../utils/utils' ;
5
5
import { replacePackage } from './replace-package' ;
6
+ import { updateDependencies } from './update-dependencies' ;
6
7
7
8
export async function runV2Migration ( app : AppCommand ) {
8
9
intro (
9
10
`✨ ${ bgMagenta ( ' This command will migrate your Qwik application from v1 to v2 \n' ) } ` +
10
11
`This includes the following: \n` +
11
- // TODO: package names
12
+ // TODO: package names
12
13
` - "@builder.io/qwik", "@builder.io/qwik-city" packages will be rescoped to "@qwik.dev/core" and "@qwik.dev/qwik-city" \n` +
13
14
` - related dependencies will be updated \n`
14
15
) ;
@@ -22,11 +23,11 @@ export async function runV2Migration(app: AppCommand) {
22
23
}
23
24
24
25
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 ( ) ;
27
29
} catch ( error ) {
28
30
console . log ( error ) ;
29
- throw error
31
+ throw error ;
30
32
}
31
-
32
33
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments