Skip to content

Commit ec095ba

Browse files
committed
feat: add migration to qwik RC 0.100.0
1 parent 25ad894 commit ec095ba

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed

packages/qwik-nx/migrations.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,26 @@
124124
"version": "^3.21.4"
125125
}
126126
}
127+
},
128+
"0.15.0": {
129+
"version": "0.15.0",
130+
"packages": {
131+
"@builder.io/qwik": {
132+
"version": "~0.100.0"
133+
},
134+
"@builder.io/qwik-city": {
135+
"version": "~0.100.0"
136+
},
137+
"@types/node": {
138+
"version": "c"
139+
},
140+
"eslint-plugin-qwik": {
141+
"version": "~0.100.0"
142+
},
143+
"prettier": {
144+
"version": "~2.8.7"
145+
}
146+
}
127147
}
128148
}
129149
}

packages/qwik-nx/src/utils/add-common-qwik-dependencies.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
import {
77
nodeFetchVersion,
88
qwikCityVersion,
9+
qwikEslintPluginVersion,
910
qwikVersion,
1011
undiciVersion,
1112
viteTsconfigPathsVersion,
@@ -19,6 +20,7 @@ export function addCommonQwikDependencies(host: Tree): GeneratorCallback {
1920
{
2021
'@builder.io/qwik': qwikVersion,
2122
'@builder.io/qwik-city': qwikCityVersion,
23+
'eslint-plugin-qwik': qwikEslintPluginVersion,
2224
vite: viteVersion,
2325
'vite-tsconfig-paths': viteTsconfigPathsVersion,
2426
'node-fetch': nodeFetchVersion,
@@ -29,7 +31,6 @@ export function addCommonQwikDependencies(host: Tree): GeneratorCallback {
2931
// "@typescript-eslint/eslint-plugin": tsEslintVersion,
3032
// "@typescript-eslint/parser": tsEslintVersion,
3133
// "eslint": eslintVersion,
32-
// "eslint-plugin-qwik": qwikEslintPluginVersion,
3334
// "prettier": prettierVersion,
3435
// "typescript": typescriptVersion,
3536
}

packages/qwik-nx/src/utils/versions.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// qwik packages
2-
export const qwikVersion = '~0.23.0';
3-
export const qwikCityVersion = '~0.6.6';
4-
export const qwikEslintPluginVersion = '~0.23.0';
2+
export const qwikVersion = '~0.100.0';
3+
export const qwikCityVersion = '~0.100.0';
4+
export const qwikEslintPluginVersion = '~0.100.0';
55

66
// css preprocessors
77
export const sassVersion = '~1.56.1';
@@ -33,7 +33,8 @@ export const typesMdx = '^2.0.3';
3333
// other
3434
export const eslintVersion = '~8.36.0';
3535
export const tsEslintVersion = '~5.43.0';
36-
export const prettierVersion = '~2.8.6';
36+
export const prettierVersion = '~2.8.7';
3737
export const typescriptVersion = '~5.0.2';
3838
export const nodeFetchVersion = '~3.3.0';
39+
export const typesNodeVersion = '^18.15.9';
3940
export const typesEslint = '~8.21.3';

0 commit comments

Comments
 (0)