mobbdev 1.4.48 → 1.4.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/args/commands/upload_ai_blame.mjs +4 -1
- package/dist/index.mjs +467 -336
- package/package.json +7 -3
|
@@ -4172,6 +4172,10 @@ import fs from "fs";
|
|
|
4172
4172
|
import path from "path";
|
|
4173
4173
|
import { fileURLToPath } from "url";
|
|
4174
4174
|
function getModuleRootDir() {
|
|
4175
|
+
const seaRoot = process.env["MOBBDEV_MODULE_ROOT"];
|
|
4176
|
+
if (seaRoot) {
|
|
4177
|
+
return seaRoot;
|
|
4178
|
+
}
|
|
4175
4179
|
let manifestDir = getDirName();
|
|
4176
4180
|
for (let i = 0; i < 10; i++) {
|
|
4177
4181
|
const manifestPath = path.join(manifestDir, "package.json");
|
|
@@ -4797,7 +4801,6 @@ init_GitService();
|
|
|
4797
4801
|
// src/features/analysis/scm/bitbucket/bitbucket.ts
|
|
4798
4802
|
import querystring2 from "querystring";
|
|
4799
4803
|
import * as bitbucketPkgNode from "bitbucket";
|
|
4800
|
-
import bitbucketPkg from "bitbucket";
|
|
4801
4804
|
import Debug4 from "debug";
|
|
4802
4805
|
import { z as z17 } from "zod";
|
|
4803
4806
|
|