mirror of
https://github.com/voideditor/void.git
synced 2025-03-15 07:27:58 +00:00
revert
This commit is contained in:
@ -56,7 +56,7 @@ const dirs = [
|
||||
|
||||
// Void added these:
|
||||
// 'extensions/void',
|
||||
'void-imports',
|
||||
// 'void-imports',
|
||||
|
||||
];
|
||||
|
||||
|
@ -141,19 +141,19 @@ cp.execSync('git config pull.rebase merges');
|
||||
cp.execSync('git config blame.ignoreRevsFile .git-blame-ignore-revs');
|
||||
|
||||
|
||||
// Void added this (inject void-imports into project):
|
||||
const buildVoidImports = () => {
|
||||
console.log('\n\nVoid is injecting void-imports...')
|
||||
cp.execSync(`npm install`, { // this goes here, not in postinstall, because we need to
|
||||
env: process.env,
|
||||
cwd: path.join(__dirname, '..', '..', '/void-imports'),
|
||||
stdio: 'inherit'
|
||||
});
|
||||
cp.execSync(`node build-index.mjs`, {
|
||||
env: process.env,
|
||||
cwd: path.join(__dirname, '..', '..', '/void-imports'),
|
||||
stdio: 'inherit'
|
||||
});
|
||||
console.log('Done injecting void-imports.')
|
||||
}
|
||||
buildVoidImports()
|
||||
// // Void added this (inject void-imports into project):
|
||||
// const buildVoidImports = () => {
|
||||
// console.log('\n\nVoid is injecting void-imports...')
|
||||
// cp.execSync(`npm install`, { // this goes here, not in postinstall, because we need to
|
||||
// env: process.env,
|
||||
// cwd: path.join(__dirname, '..', '..', '/void-imports'),
|
||||
// stdio: 'inherit'
|
||||
// });
|
||||
// cp.execSync(`node build-index.mjs`, {
|
||||
// env: process.env,
|
||||
// cwd: path.join(__dirname, '..', '..', '/void-imports'),
|
||||
// stdio: 'inherit'
|
||||
// });
|
||||
// console.log('Done injecting void-imports.')
|
||||
// }
|
||||
// buildVoidImports()
|
||||
|
Reference in New Issue
Block a user