@gluestack-v2/framework-cli
Version:
Gluestack V2 Framework CLI
19 lines (18 loc) • 956 B
JavaScript
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BOLT_SERVICES_PATH = exports.GLUE_GENERATED_SERVICES_PATH = exports.GLUE_GENERATED_PACKAGES_PATH = exports.GLUE_GENERATED_PATH = exports.GLUE_INTERNAL_PATH = void 0;
exports.GLUE_INTERNAL_PATH = '.glue/internals';
exports.GLUE_GENERATED_PATH = '.glue/__generated__';
exports.GLUE_GENERATED_PACKAGES_PATH = `${exports.GLUE_GENERATED_PATH}/packages`;
exports.GLUE_GENERATED_SERVICES_PATH = `${exports.GLUE_GENERATED_PATH}/services`;
exports.BOLT_SERVICES_PATH = '.glue/__generated__/services';
});