1234567891011121314151617181920212223242526272829303132 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.getRawProjectId = getRawProjectId;
- var _childProcess = require("child_process");
- function _getProjectIdByGit() {
- try {
- const originBuffer = (0, _childProcess).execSync(`git config --local --get remote.origin.url`, {
- timeout: 1000,
- stdio: `pipe`
- });
- return String(originBuffer).trim();
- } catch (_) {
- return null;
- }
- }
- function getRawProjectId() {
- return _getProjectIdByGit() || process.env.REPOSITORY_URL || process.cwd();
- }
|