@rnv/engine-rn-next
Version:
ReNative Engine to build next based platforms with react native support.
19 lines • 801 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var core_1 = require("@rnv/core");
var runner_1 = require("../sdk/runner");
var constants_1 = require("../sdk/constants");
exports.default = (0, core_1.createTask)({
description: 'Configure current project',
dependsOn: [core_1.RnvTaskName.platformConfigure],
fn: function () { return tslib_1.__awaiter(void 0, void 0, void 0, function () {
return tslib_1.__generator(this, function (_a) {
return [2 /*return*/, (0, runner_1.configureNextIfRequired)()];
});
}); },
task: core_1.RnvTaskName.configure,
options: core_1.RnvTaskOptionPresets.withConfigure(),
platforms: constants_1.SdkPlatforms,
});
//# sourceMappingURL=taskConfigure.js.map
;