Skip to content

Commit 5c101e4

Browse files
committed
fix: remove smart-whisper dep on workspace pkgs to bypass build issues due to symlinks
1 parent 90f09be commit 5c101e4

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ jobs:
9898
if: matrix.os == 'macos'
9999
working-directory: apps/desktop
100100
env:
101-
SKIP_CODESIGNING: true
102-
SKIP_NOTARIZATION: true
101+
SKIP_CODESIGNING: false
102+
SKIP_NOTARIZATION: false
103103
APPLE_ID: ${{ secrets.APPLE_ID }}
104104
APPLE_APP_PASSWORD: ${{ secrets.APPLE_APP_PASSWORD }}
105105
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}

apps/desktop/forge.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const config: ForgeConfig = {
160160
console.log("Checking for symlinks in copied dependencies...");
161161
for (const dep of nativeModuleDependenciesToPackage) {
162162
const localDepPath = join(localNodeModules, dep);
163-
163+
164164
try {
165165
if (existsSync(localDepPath)) {
166166
const stats = lstatSync(localDepPath);

packages/smart-whisper/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"minimatch": "10.0.3"
3434
},
3535
"devDependencies": {
36-
"@amical/typescript-config": "workspace:*",
3736
"@types/node": "^24.3.0",
3837
"tsup": "^8.5.0",
3938
"typescript": "^5.8.2"

packages/smart-whisper/tsconfig.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
{
2-
"extends": "@amical/typescript-config/base.json",
32
"compilerOptions": {
3+
"declaration": true,
4+
"declarationMap": true,
5+
"esModuleInterop": true,
6+
"incremental": false,
7+
"isolatedModules": true,
8+
"lib": ["es2022", "DOM", "DOM.Iterable"],
9+
"module": "NodeNext",
10+
"moduleDetection": "force",
11+
"moduleResolution": "NodeNext",
12+
"noUncheckedIndexedAccess": true,
13+
"resolveJsonModule": true,
14+
"skipLibCheck": true,
15+
"strict": true,
16+
"target": "ES2022",
417
"outDir": "dist"
518
},
619
"include": ["src"],

pnpm-lock.yaml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)