electron/script/yarn.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
199 B
JavaScript
Raw Normal View History

const path = require('node:path');
exports.YARN_SCRIPT_PATH = path.resolve(__dirname, '..', '.yarn/releases/yarn-4.11.0.cjs');
if (require.main === module) {
require(exports.YARN_SCRIPT_PATH);
}