mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-14 04:48:40 -09:00
Upgrade yarn
This commit is contained in:
parent
d65dfba445
commit
ff8c0ba66b
8 changed files with 12953 additions and 156808 deletions
BIN
.yarn/install-state.gz
Normal file
BIN
.yarn/install-state.gz
Normal file
Binary file not shown.
948
.yarn/releases/yarn-4.9.1.cjs
vendored
Executable file
948
.yarn/releases/yarn-4.9.1.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
148049
.yarn/releases/yarn-classic.cjs
vendored
148049
.yarn/releases/yarn-classic.cjs
vendored
File diff suppressed because one or more lines are too long
1
.yarnrc
1
.yarnrc
|
|
@ -1 +0,0 @@
|
|||
registry "https://registry.npmjs.org/"
|
||||
|
|
@ -1 +1,3 @@
|
|||
yarnPath: .yarn/releases/yarn-classic.cjs
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.9.1.cjs
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
"clean": "node ./bin/rimraf-standalone.js node_modules && node ./bin/rimraf-standalone.js ./app/node_modules && node ./bin/rimraf-standalone.js ./app/renderer && node ./bin/rimraf-standalone.js ./target && node ./bin/rimraf-standalone.js ./dist",
|
||||
"v8-snapshot": "cross-env npm_config_arch=x64 yarn run v8-snapshot:arch && cross-env npm_config_arch=arm64 yarn run v8-snapshot:arch",
|
||||
"v8-snapshot:arch": "yarn run mk-snapshot && yarn run cp-snapshot",
|
||||
"mk-snapshot": "cross-env ELECTRON_CUSTOM_VERSION=$npm_package_devDependencies_electron node node_modules/electron-mksnapshot/download-mksnapshot.js && node bin/mk-snapshot.js",
|
||||
"mk-snapshot": "node scripts/mk-snapshot.js",
|
||||
"cp-snapshot": "node bin/cp-snapshot.js",
|
||||
"generate-schema": "typescript-json-schema ./typings/config.d.ts rawConfig -o ./app/config/schema.json --required",
|
||||
"uuaw": "uuaw"
|
||||
|
|
@ -144,7 +144,7 @@
|
|||
"terser": "5.36.0",
|
||||
"terser-webpack-plugin": "^5.3.10",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.7.2",
|
||||
"typescript": "^5.8.3",
|
||||
"uuaw": "^1.2.2",
|
||||
"webpack": "5.96.1"
|
||||
},
|
||||
|
|
@ -159,5 +159,5 @@
|
|||
"@types/retry": "0.12.5",
|
||||
"node-abi": "^3.67.0"
|
||||
},
|
||||
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
||||
"packageManager": "yarn@4.9.1"
|
||||
}
|
||||
|
|
|
|||
12
scripts/mk-snapshot.js
Normal file
12
scripts/mk-snapshot.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
const { execSync } = require("child_process");
|
||||
const pkg = require("../package.json");
|
||||
|
||||
const version = pkg.devDependencies.electron;
|
||||
if (!version) {
|
||||
console.error("Electron not found in devDependencies.");
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
process.env.ELECTRON_CUSTOM_VERSION = version;
|
||||
execSync("node node_modules/electron-mksnapshot/download-mksnapshot.js", { stdio: "inherit" });
|
||||
execSync("node bin/mk-snapshot.js", { stdio: "inherit" });
|
||||
Loading…
Reference in a new issue