* feat: nocobase build * chore: update build scripts * chore: update build scripts * chore(versions): 😊 publish v0.7.0-alpha.33 * chore: independent version * chore: nocobase build * chore(versions): 😊 publish v0.7.0-alpha.34 * feat: nocobase-cli * feat: nocobase-cli * chore: update dependencies * feat: improve code * refactor: create-nocobase-app * chore(versions): 😊 publish v0.7.0-alpha.35 * feat: @nocobase/devtools * chore(versions): 😊 publish v0.7.0-alpha.36 * chore: update dependencies * chore(versions): 😊 publish v0.7.0-alpha.37 * feat: improve code * chore(versions): 😊 publish v0.7.0-alpha.38 * feat: improve code * chore(versions): 😊 publish v0.7.0-alpha.39 * feat: update deps * chore(versions): 😊 publish v0.7.0-alpha.40 * chore: update devDependencies * chore(versions): 😊 publish v0.7.0-alpha.41 * fix: postinstall * chore(versions): 😊 publish v0.7.0-alpha.42 * chore: improve code * chore(versions): 😊 publish v0.7.0-alpha.43 * chore: execa * chore(versions): 😊 publish v0.7.0-alpha.44 * chore(cli): allow unknown option * chore(versions): 😊 publish v0.7.0-alpha.45 * fix: default envs * chore(versions): 😊 publish v0.7.0-alpha.45 * fix: package argument for build command * chore(versions): 😊 publish v0.7.0-alpha.46 * fix: improve code * chore(versions): 😊 publish v0.7.0-alpha.48 * feat: clean & doc * chore(versions): 😊 publish v0.7.0-alpha.49 * feat: compilation tips * feat: upgrade command * chore(versions): 😊 publish v0.7.0-alpha.50 * fix: unexpected token ] in JSON * chore(versions): 😊 publish v0.7.0-alpha.51 * fix: upgrade command * chore(versions): 😊 publish v0.7.0-alpha.52 * fix: remove export action from available action * fix: db sync after upgrade * chore(versions): 😊 publish v0.7.0-alpha.53 * feat: upgrade log * chore(versions): 😊 publish v0.7.0-alpha.54 * docs: updates * feat: updates * docs(cli): update usage description * feat: updates * docs: updates * docs: updates * docs: toc * feat: sdk * docs: updates * docs: updates * docs: updates * Update index.md * docs: updates * Update release-notes.md * Update roadmap.md * Update index.md * Update contributing.md * Update contributing.md * Update index.md * Update index.md * Update nocobase-cli.md * Update nocobase-cli.md * fix: user plugin initialization data * Update env.md * Update env.md * Update directory-structure.md * Update index.md * Update action-api.md * Update filter-operators.md * docs: update thanks.md * Update index.md * Update javascript-sdk.md * Update rest-api.md * Update installation.md * Update installation.md * Update upgrading.md * Update upgrading.md * Update upgrading.md * Update installation.md * Update installation.md * Create release-notes.md * Update release-notes.md * feat: updates * feat: update docs * feat: update release-notes.md * feat: switch language * feat: updates * Add files via upload * Add files via upload * Update important-features.md * Update thanks.md * feat: nocobase postinstall * Update index.md * Create why-different.md * Update why-different.md * Create who-is-for.md * Rename who-is-for.md to who.md * feat: update docs * Rename why-different.md to why.md * Update why.md * Update menus.ts * Update why-nocobase.md * Create who.md * Create why.md * feat: updates * chore(versions): 😊 publish v0.7.0-alpha.55 * feat: tips * Update who.md * Update who.md * feat: update docs * feat: update doc menus * fix: plugin client dist * docs: update contributing.md * docs: update readme.md * docs: update readme.md * docs: update readme.md * Update functional-zoning.md * fix: br Co-authored-by: Zhou <zhou.working@gmail.com>
144 lines
3.3 KiB
JavaScript
144 lines
3.3 KiB
JavaScript
const net = require('net');
|
|
const chalk = require('chalk');
|
|
const execa = require('execa');
|
|
const { resolve } = require('path');
|
|
const { readFile, writeFile } = require('fs').promises;
|
|
const { existsSync } = require('fs');
|
|
|
|
exports.isPackageValid = (package) => {
|
|
try {
|
|
require.resolve(package);
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
exports.hasCorePackages = () => {
|
|
const coreDir = resolve(process.cwd(), 'packages/core/build');
|
|
return existsSync(coreDir);
|
|
};
|
|
|
|
exports.hasTsNode = () => {
|
|
return exports.isPackageValid('ts-node/dist/bin');
|
|
};
|
|
|
|
exports.isDev = function isDev() {
|
|
if (process.env.APP_ENV === 'production') {
|
|
return false;
|
|
}
|
|
return exports.hasTsNode();
|
|
};
|
|
|
|
exports.nodeCheck = () => {
|
|
if (!exports.hasTsNode()) {
|
|
console.log('Please install all dependencies');
|
|
console.log(chalk.yellow('$ yarn install'));
|
|
process.exit(0);
|
|
}
|
|
};
|
|
|
|
exports.run = (command, argv, options = {}) => {
|
|
return execa(command, argv, {
|
|
shell: true,
|
|
stdio: 'inherit',
|
|
...options,
|
|
env: {
|
|
...process.env,
|
|
...options.env,
|
|
},
|
|
});
|
|
};
|
|
|
|
exports.isPortReachable = async (port, { timeout = 1000, host } = {}) => {
|
|
const promise = new Promise((resolve, reject) => {
|
|
const socket = new net.Socket();
|
|
|
|
const onError = () => {
|
|
socket.destroy();
|
|
reject();
|
|
};
|
|
|
|
socket.setTimeout(timeout);
|
|
socket.once('error', onError);
|
|
socket.once('timeout', onError);
|
|
|
|
socket.connect(port, host, () => {
|
|
socket.end();
|
|
resolve();
|
|
});
|
|
});
|
|
|
|
try {
|
|
await promise;
|
|
return true;
|
|
} catch (_) {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
exports.postCheck = async (opts) => {
|
|
const port = opts.port || process.env.APP_PORT;
|
|
const result = await exports.isPortReachable(port);
|
|
if (result) {
|
|
console.error(chalk.red(`post already in use ${port}`));
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
exports.runInstall = async () => {
|
|
const { APP_PACKAGE_ROOT } = process.env;
|
|
|
|
if (exports.isDev()) {
|
|
const argv = [
|
|
'-P',
|
|
'./tsconfig.server.json',
|
|
'-r',
|
|
'tsconfig-paths/register',
|
|
`./packages/${APP_PACKAGE_ROOT}/server/src/index.ts`,
|
|
'install',
|
|
'-s',
|
|
];
|
|
await exports.run('ts-node', argv);
|
|
} else {
|
|
const argv = [`./packages/${APP_PACKAGE_ROOT}/server/lib/index.js`, 'install', '-s'];
|
|
await exports.run('node', argv);
|
|
}
|
|
};
|
|
|
|
exports.runAppCommand = async (command, args = []) => {
|
|
const { APP_PACKAGE_ROOT } = process.env;
|
|
|
|
if (exports.isDev()) {
|
|
const argv = [
|
|
'-P',
|
|
'./tsconfig.server.json',
|
|
'-r',
|
|
'tsconfig-paths/register',
|
|
`./packages/${APP_PACKAGE_ROOT}/server/src/index.ts`,
|
|
command,
|
|
...args,
|
|
];
|
|
await exports.run('ts-node', argv);
|
|
} else {
|
|
const argv = [`./packages/${APP_PACKAGE_ROOT}/server/lib/index.js`, command, ...args];
|
|
await exports.run('node', argv);
|
|
}
|
|
};
|
|
|
|
exports.promptForTs = () => {
|
|
console.log(chalk.green('WAIT: ') + 'TypeScript compiling...');
|
|
};
|
|
|
|
exports.updateJsonFile = async (target, fn) => {
|
|
const content = await readFile(target, 'utf-8');
|
|
const json = JSON.parse(content);
|
|
await writeFile(target, JSON.stringify(fn(json), null, 2), 'utf-8');
|
|
};
|
|
|
|
exports.getVersion = async () => {
|
|
const { stdout } = await execa('npm', ['v', '@nocobase/app-server', 'versions']);
|
|
const versions = new Function(`return ${stdout}`)();
|
|
return versions[versions.length - 1];
|
|
};
|