@aws-amplify/cli-internal
Version:
Amplify CLI
75 lines • 3.44 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.postInitSetup = void 0;
const amplify_cli_core_1 = require("@aws-amplify/amplify-cli-core");
const child_process_1 = require("child_process");
const lodash_1 = __importDefault(require("lodash"));
const path = __importStar(require("path"));
const packageJson = 'package.json';
const initializationScripts = ['start', 'serve'];
const MISSING_SCRIPTS_ERROR = new Error('Did not find a "start" or "serve" initialization script. Add a package.json file in the root of the project with one of these scripts.');
const postInitSetup = async (context) => {
var _a;
if ((_a = context.parameters.options) === null || _a === void 0 ? void 0 : _a.app) {
try {
context.parameters.options.app = true;
context.parameters.options.y = true;
context.amplify.constructExeInfo(context);
await context.amplify.pushResources(context);
await runPackage();
}
catch (e) {
if (e instanceof amplify_cli_core_1.AmplifyError) {
throw e;
}
throw new amplify_cli_core_1.AmplifyFault('ProjectInitFault', {
message: 'An error occurred during project initialization',
link: 'https://docs.amplify.aws/cli/project/troubleshooting/',
}, e);
}
}
};
exports.postInitSetup = postInitSetup;
const runPackage = async () => {
const packageManager = await (0, amplify_cli_core_1.getPackageManager)();
if (packageManager !== null) {
const packageScript = getPackageScript();
(0, child_process_1.execSync)(`${packageManager.executable} ${packageScript}`, { stdio: 'inherit' });
}
};
const getPackageScript = () => {
const packageJsonDir = path.join(process.cwd(), packageJson);
const packageJsonContent = amplify_cli_core_1.JSONUtilities.readJson(packageJsonDir, { throwIfNotExist: false }) || {};
const scripts = lodash_1.default.get(packageJsonContent, 'scripts', {});
return (lodash_1.default.keys(scripts).find((scriptName) => initializationScripts.includes(scriptName)) ||
(() => {
throw MISSING_SCRIPTS_ERROR;
})());
};
//# sourceMappingURL=postInitSetup.js.map