Skip to content

Commit 804e78a

Browse files
committed
fix(ci): keep ^ in release deps and fix build repos
1 parent d1f6398 commit 804e78a

File tree

4 files changed

+38
-9
lines changed

4 files changed

+38
-9
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -880,11 +880,14 @@ jobs:
880880
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
881881
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
882882

883+
- name: Fixup package.json files
884+
run: pnpm run release.fixup-package-json
885+
883886
- name: Commit Build Artifacts
884887
if: github.event_name == 'push'
885888
env:
886889
QWIK_API_TOKEN_GITHUB: ${{ secrets.QWIK_API_TOKEN_GITHUB }}
887-
run: pnpm run qwik-save-artifacts
890+
run: pnpm run qwik-push-build-repos
888891

889892
- name: Publish packages for testing
890893
if: github.event_name != 'workflow_dispatch'

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
{
1313
"label": "Be lenient in vite versions for prod. v4 is broken, v5 is good",
1414
"dependencyTypes": [
15-
"prod"
15+
"prod",
16+
"peer"
1617
],
1718
"dependencies": [
1819
"vite"
@@ -230,8 +231,9 @@
230231
"preinstall": "npx only-allow pnpm",
231232
"prepare": "simple-git-hooks",
232233
"prettier.fix": "prettier --cache --write .",
233-
"qwik-save-artifacts": "tsm ./scripts/qwik-save-artifacts.ts",
234+
"qwik-push-build-repos": "tsm ./scripts/qwik-push-build-repos.ts",
234235
"release": "changeset publish",
236+
"release.fixup-package-json": "syncpack fix-mismatches --config syncpack-release-conf.json",
235237
"release.pkg-pr-new": "pnpm dlx pkg-pr-new@^0.0.9 publish --compact --pnpm ./packages/qwik ./packages/qwik-city ./packages/eslint-plugin-qwik ./packages/create-qwik",
236238
"release.prepare": "pnpm build --prepare-release",
237239
"serve": "tsm --inspect --conditions=development starters/dev-server.ts 3300",

scripts/qwik-save-artifacts.ts scripts/qwik-push-build-repos.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,17 @@ const root = join(__dirname, '..');
1010
const srcRepoRef = 'https://github.com/QwikDev/qwik/commit/';
1111

1212
(async () => {
13-
// This replaces the `workspace:^` versions with the actual versions.
14-
await $('npx', 'syncpack', 'fix-mismatches', '-c', '/dev/null');
1513
const finishQwik = await prepare({
1614
buildRepo: 'qwik-build',
17-
artifactsDir: join(root, 'packages', 'qwik', 'dist'),
15+
artifactsDir: join(root, 'packages', 'qwik'),
1816
});
1917
const finishQwikCity = await prepare({
2018
buildRepo: 'qwik-city-build',
21-
artifactsDir: join(root, 'packages', 'qwik-city', 'lib'),
19+
artifactsDir: join(root, 'packages', 'qwik-city'),
2220
});
2321
const finishCreateQwikCli = await prepare({
2422
buildRepo: 'qwik-create-cli-build',
25-
artifactsDir: join(root, 'packages', 'create-qwik', 'dist'),
23+
artifactsDir: join(root, 'packages', 'create-qwik'),
2624
});
2725
const finishQwikLabs = await prepare({
2826
buildRepo: 'qwik-labs-build',
@@ -75,7 +73,7 @@ async function prepare({ buildRepo, artifactsDir }: { buildRepo: string; artifac
7573
await $(
7674
'cp',
7775
'-r',
78-
...(await expand(artifactsDir, ['.gitignore', 'node_modules'])),
76+
...(await expand(artifactsDir, ['.gitignore', 'node_modules', 'src'])),
7977
buildRepoDir
8078
);
8179
await $('cp', join(root, 'CONTINUOUS_BUILD.md'), 'README.md');

syncpack-release-conf.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"versionGroups": [
3+
{
4+
"label": "Require minimums",
5+
"dependencyTypes": ["prod", "peer"],
6+
"range": "^"
7+
}
8+
],
9+
"semverGroups": [
10+
{
11+
"label": "Playwright should have the same version as in flake.nix",
12+
"dependencies": ["@playwright/test"],
13+
"pinVersion": "1.47.0"
14+
},
15+
{
16+
"label": "Undici should always be * until we remove it",
17+
"dependencies": ["undici"],
18+
"range": "*"
19+
},
20+
{
21+
"label": "use exact version numbers for devDependencies",
22+
"dependencyTypes": ["dev"],
23+
"range": ""
24+
}
25+
]
26+
}

0 commit comments

Comments
 (0)