UNPKG

402 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const stages_1 = require("./stages");
4function infer(app) {
5 const inferredStage = stages_1.inferrableStages.find(stage => stage.inferRegex.test(app));
6 if (inferredStage) {
7 return [app.replace(inferredStage.inferRegex, ''), inferredStage.name];
8 }
9 return [app, 'production'];
10}
11exports.default = infer;