mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
2974c203b5
Change-type: patch
75 lines
2.3 KiB
JavaScript
Executable File
75 lines
2.3 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// ****************************************************************************
|
|
// THIS IS FOR DEV PURPOSES ONLY AND WILL NOT BE PART OF THE PUBLISHED PACKAGE
|
|
// Before opening a PR you should build and test your changes using bin/balena
|
|
// ****************************************************************************
|
|
|
|
// tslint:disable:no-var-requires
|
|
|
|
// We boost the threadpool size as ext2fs can deadlock with some
|
|
// operations otherwise, if the pool runs out.
|
|
process.env.UV_THREADPOOL_SIZE = '64';
|
|
|
|
const path = require('path');
|
|
const rootDir = path.join(__dirname, '..');
|
|
|
|
// Allow balena-dev to work with oclif by temporarily
|
|
// pointing oclif config options to lib/ instead of build/
|
|
modifyOclifPaths();
|
|
// Undo changes on exit
|
|
process.on('exit', function () {
|
|
modifyOclifPaths(true);
|
|
});
|
|
// Undo changes in case of ctrl-v
|
|
process.on('SIGINT', function () {
|
|
modifyOclifPaths(true);
|
|
});
|
|
|
|
// Use fast-boot to cache require lookups, speeding up startup
|
|
require('fast-boot2').start({
|
|
cacheScope: __dirname + '/..',
|
|
cacheFile: '.fast-boot.json',
|
|
});
|
|
|
|
// Set the desired es version for downstream modules that support it
|
|
require('@balena/es-version').set('es2018');
|
|
|
|
// Note: before ts-node v6.0.0, 'transpile-only' (no type checking) was the
|
|
// default option. We upgraded ts-node and found that adding 'transpile-only'
|
|
// was necessary to avoid a mysterious 'null' error message. On the plus side,
|
|
// it is supposed to run faster. We still benefit from type checking when
|
|
// running 'npm run build'.
|
|
require('ts-node').register({
|
|
project: path.join(rootDir, 'tsconfig.json'),
|
|
transpileOnly: true,
|
|
});
|
|
require('../lib/app').run();
|
|
|
|
// Modify package.json oclif paths from build/ -> lib/, or vice versa
|
|
function modifyOclifPaths(revert) {
|
|
const fs = require('fs');
|
|
const packageJsonPath = path.join(rootDir, 'package.json');
|
|
|
|
const packageJson = fs.readFileSync(packageJsonPath, 'utf8');
|
|
const packageObj = JSON.parse(packageJson);
|
|
|
|
if (!packageObj.oclif) {
|
|
return;
|
|
}
|
|
|
|
let oclifSectionText = JSON.stringify(packageObj.oclif);
|
|
if (!revert) {
|
|
oclifSectionText = oclifSectionText.replace(/\/build\//g, '/lib/');
|
|
} else {
|
|
oclifSectionText = oclifSectionText.replace(/\/lib\//g, '/build/');
|
|
}
|
|
|
|
packageObj.oclif = JSON.parse(oclifSectionText);
|
|
fs.writeFileSync(
|
|
packageJsonPath,
|
|
`${JSON.stringify(packageObj, null, 2)}\n`,
|
|
'utf8',
|
|
);
|
|
}
|