Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.
4 changes: 2 additions & 2 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@triliumnext/server": "workspace:*",
"copy-webpack-plugin": "13.0.0",
"electron": "35.1.5",
"@electron/rebuild": "3.7.2",
"@electron/rebuild": "4.0.1",
"@electron-forge/cli": "7.8.0",
"@electron-forge/maker-deb": "7.8.0",
"@electron-forge/maker-dmg": "7.8.0",
Expand Down Expand Up @@ -53,7 +53,7 @@
"cache": true,
"configurations": {
"default": {
"command": "cross-env DEBUG=* tsx scripts/rebuild.ts",
"command": "cross-env DEBUG=* tsx scripts/rebuild.mts",
"cwd": "{projectRoot}"
},
"nixos": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { fileURLToPath } from "url";
import { dirname, join } from "path";
import rebuild from "@electron/rebuild"
import { rebuild } from "@electron/rebuild"
import { readFileSync } from "fs";

const scriptDir = dirname(fileURLToPath(import.meta.url));
Expand Down
4 changes: 2 additions & 2 deletions apps/edit-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"devDependencies": {
"@electron/rebuild": "3.7.2",
"@electron/rebuild": "4.0.1",
"@triliumnext/client": "workspace:*",
"@triliumnext/desktop": "workspace:*",
"@types/fs-extra": "11.0.4",
Expand All @@ -21,7 +21,7 @@
"cache": true,
"configurations": {
"default": {
"command": "cross-env DEBUG=* tsx scripts/rebuild.ts",
"command": "cross-env DEBUG=* tsx scripts/rebuild.mts",
"cwd": "{projectRoot}"
},
"nixos": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import { fileURLToPath } from "url";
import { dirname, join } from "path";
import rebuild from "@electron/rebuild"
import { rebuild } from "@electron/rebuild"
import { readFileSync } from "fs";

const scriptDir = dirname(fileURLToPath(import.meta.url));
Expand Down
3 changes: 0 additions & 3 deletions apps/edit-docs/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
"eslint.config.mjs"
],
"references": [
{
"path": "../server/tsconfig.app.json"
},
{
"path": "../desktop/tsconfig.app.json"
},
Expand Down
3 changes: 0 additions & 3 deletions apps/edit-docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
"files": [],
"include": [],
"references": [
{
"path": "../server"
},
{
"path": "../desktop"
},
Expand Down
Loading
Loading