Skip to content

Commit 1e4e8c9

Browse files
committed
Adapt frontends to non-null change-ids
1 parent 3813b56 commit 1e4e8c9

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

apps/desktop/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"test:ui": "vitest --ui",
1313
"build": "vite build",
1414
"preview": "vite preview",
15+
"package": "svelte-kit sync",
1516
"check": "svelte-check --tsconfig ./tsconfig.json",
1617
"check-cycles": "tsx ../../scripts/check-component-cycles.ts",
1718
"check:watch": "pnpm check --watch",

apps/desktop/src/lib/testing/mockStackService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const MOCK_COMMIT_A: Commit = {
1818
state: { type: "LocalOnly" },
1919
createdAt: BigInt(1672531200000), // Example timestamp
2020
author: MOCK_AUTHOR_A,
21-
changeId: null,
21+
changeId: "Icommit-a-id",
2222
gerritReviewUrl: null,
2323
};
2424

apps/web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"dev": "vite dev --host 0.0.0.0",
88
"build": "vite build",
99
"preview": "vite preview",
10+
"package": "svelte-kit sync",
1011
"prepare": "svelte-kit sync",
1112
"check": "svelte-check --tsconfig ./tsconfig.json",
1213
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",

packages/svelte-comment-injector/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"main": "dist/index.js",
1010
"types": "dist/index.d.ts",
1111
"scripts": {
12+
"package": "tsc",
1213
"build": "tsc",
1314
"prepare": "pnpm build"
1415
},

turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"tasks": {
44
"package": {
55
"dependsOn": ["^package"],
6-
"outputs": ["dist/**"]
6+
"outputs": ["dist/**", ".svelte-kit/**"]
77
},
88
"build": {
99
"dependsOn": ["package"],

0 commit comments

Comments
 (0)