st-bundle
Version:
CLI for watching and bundling SpringType projects.
10 lines • 343 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const path = require("path");
function getPath(usePath, options) {
return options.basePath
? path.resolve(options.basePath, usePath)
: path.resolve(process.cwd(), usePath);
}
exports.getPath = getPath;
//# sourceMappingURL=getPath.js.map