Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions archive-static-sites/x-archive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"build": "vue-cli-service build"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@fortawesome/fontawesome-free": "^7.2.0",
"bootstrap": "^5.3.8",
"vue": "^3.5.24",
"vue": "^3.5.28",
"vue-class-component": "8.0.0-rc.1",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@types/node": "^24.10.0",
"@types/node": "^25.2.3",
"@vue/cli-plugin-router": "~5.0.9",
"@vue/cli-plugin-typescript": "~5.0.9",
"@vue/cli-service": "~5.0.9",
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"clsx": "^2.1.1",
"docusaurus-lunr-search": "^3.6.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.0",
"react-dom": "^19.2.0"
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
Expand Down
10 changes: 9 additions & 1 deletion forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function removeCodeSignatures(dir: string) {
const files = fs.readdirSync(dir);
files.forEach((file) => {
const filePath = path.join(dir, file);
const stat = fs.statSync(filePath);
const stat = fs.lstatSync(filePath);

if (stat.isDirectory()) {
if (file === "_CodeSignature") {
Expand Down Expand Up @@ -195,6 +195,14 @@ const config: ForgeConfig = {
: "systems.lockdown.cyd-dev",
appCopyright: `Copyright ${new Date().getFullYear()} Lockdown Systems LLC`,
asar: true,
// Workaround for electron-forge > 7.4.0 not including node_modules in asar
// See: https://github.com/electron/forge/issues/3934
ignore: (file: string) => {
if (!file) return false;
if (file.startsWith("/.vite")) return false;
if (file.startsWith("/node_modules")) return false;
return true;
},
icon: path.join(assetsPath, "icon"),
beforeAsar: [
// Copy the config.json file to the resources path
Expand Down
Loading