UNPKG

react-scripts-intlayer

Version:

Integrate Intlayer with Create React App using custom React scripts for internationalization i18n and advanced Webpack configurations

50 lines 1.7 kB
#!/usr/bin/env node import { ESMxCJSRequire, appLogger } from "@intlayer/config"; import spawn from "cross-spawn"; const args = process.argv.slice(2); const scriptIndex = args.findIndex( (x) => x === "build" || x === "start" || x === "test" ); const script = scriptIndex === -1 ? args[0] : args[scriptIndex]; switch (script) { case "build": case "start": case "test": { const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : []; const scriptPath = ESMxCJSRequire.resolve( `@craco/craco/dist/scripts/${script}` ); const scriptArgs = args.slice(scriptIndex + 1); const processArgs = nodeArgs.concat(scriptPath).concat([ ...scriptArgs, "--config", "./node_modules/react-scripts-intlayer/dist/cjs/craco.config.cjs" ]); const child = spawn.sync("node", processArgs, { stdio: "inherit" }); if (child.signal) { if (child.signal === "SIGKILL") { appLogger(` The build failed because the process exited too early. This probably means the system ran out of memory or someone called \`kill -9\` on the process. `); } else if (child.signal === "SIGTERM") { appLogger(` The build failed because the process exited too early. Someone might have called \`kill\` or \`killall\`, or the system could be shutting down. `); } process.exit(1); } process.exit(child.status ?? void 0); break; } default: appLogger(`Unknown script "${script}".`); appLogger("Perhaps you need to update craco?"); break; } //# sourceMappingURL=react-scripts-intlayer.mjs.map