devsmind-mcp 4.1.0 → 4.2.0
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/README.md +39 -15
- package/dist/cli/activity.js +1 -1
- package/dist/cli/activity.js.map +1 -1
- package/dist/cli/analyze.js +11 -1
- package/dist/cli/analyze.js.map +1 -1
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/init.js +21 -11
- package/dist/cli/init.js.map +1 -1
- package/dist/cli/integrations/prompt.js +5 -1
- package/dist/cli/integrations/prompt.js.map +1 -1
- package/dist/cli/integrations/registry.d.ts +1 -1
- package/dist/cli/integrations/registry.js +1 -1
- package/dist/cli/prune.js +3 -15
- package/dist/cli/prune.js.map +1 -1
- package/dist/cli/sync.d.ts +7 -2
- package/dist/cli/sync.js +15 -4
- package/dist/cli/sync.js.map +1 -1
- package/dist/cli/view.js +3 -19
- package/dist/cli/view.js.map +1 -1
- package/dist/db/analyze.d.ts +5 -0
- package/dist/db/analyze.js +23 -0
- package/dist/db/analyze.js.map +1 -1
- package/dist/db/database.d.ts +79 -1
- package/dist/db/database.js +169 -11
- package/dist/db/database.js.map +1 -1
- package/dist/db/grep.js +1 -1
- package/dist/db/grep.js.map +1 -1
- package/dist/mcp/server.js +19 -29
- package/dist/mcp/server.js.map +1 -1
- package/dist/utils/config.d.ts +50 -6
- package/dist/utils/config.js +68 -12
- package/dist/utils/config.js.map +1 -1
- package/dist/utils/scanner.js +1 -1
- package/dist/utils/scanner.js.map +1 -1
- package/package.json +1 -1
package/dist/utils/config.d.ts
CHANGED
|
@@ -34,14 +34,58 @@ export interface ProjectContext {
|
|
|
34
34
|
developer?: Developer;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
38
|
-
*
|
|
37
|
+
* The brain directory name `devsmind init` creates, as of 4.2.0.
|
|
38
|
+
*
|
|
39
|
+
* It used to be `.devmind` — one letter off from an unrelated npm package (`devmind-mcp`) that
|
|
40
|
+
* had the name first, so a developer seeing `.devmind/` in a teammate's repo and searching for it
|
|
41
|
+
* landed on someone else's project. Renaming the directory we create fixes that going forward.
|
|
42
|
+
*/
|
|
43
|
+
export declare const BRAIN_DIR_NAME = ".devsmind";
|
|
44
|
+
/**
|
|
45
|
+
* The pre-4.2.0 name. Still read, forever — an existing brain is git-committed and team-shared, so
|
|
46
|
+
* renaming one is a repo-wide commit every teammate has to pull. There is no migration and none is
|
|
47
|
+
* needed: nothing inside a brain records its own folder name (`config.json` stores repo-relative
|
|
48
|
+
* paths or `.env` repo keys), so a `.devmind` brain works identically under either name.
|
|
49
|
+
*/
|
|
50
|
+
export declare const LEGACY_BRAIN_DIR_NAME = ".devmind";
|
|
51
|
+
/** Both brain directory names, in lookup order — current name first, legacy second. */
|
|
52
|
+
export declare const BRAIN_DIR_NAMES: readonly string[];
|
|
53
|
+
/**
|
|
54
|
+
* The brain directory sitting DIRECTLY inside `dir` — `.devsmind`, else the legacy `.devmind` —
|
|
55
|
+
* or null when neither is there. Only a directory holding a `config.json` counts, so an empty
|
|
56
|
+
* leftover folder never shadows the real brain next to it.
|
|
57
|
+
*
|
|
58
|
+
* This is the one place the two names are tried. Every other lookup in the codebase goes through
|
|
59
|
+
* here or through {@link findBrainDir}; a hardcoded `'.devmind'` anywhere else is a bug that makes
|
|
60
|
+
* that one code path blind to every brain created since 4.2.0.
|
|
61
|
+
*/
|
|
62
|
+
export declare function resolveBrainDir(dir: string): string | null;
|
|
63
|
+
/**
|
|
64
|
+
* {@link resolveBrainDir}, or — when there is no brain yet — the path a NEW one would take.
|
|
65
|
+
* Never null.
|
|
66
|
+
*
|
|
67
|
+
* For callers that need a path to hand onward rather than an answer to "does a brain exist": the
|
|
68
|
+
* web-view routes' `?path=` default, and the CLI's `--path` default. Falling back to the CURRENT
|
|
69
|
+
* name matters, because falling back to the legacy one would point a fresh project at a directory
|
|
70
|
+
* that will never exist.
|
|
71
|
+
*/
|
|
72
|
+
export declare function brainDirOrDefault(dir: string): string;
|
|
73
|
+
/**
|
|
74
|
+
* Walk up from `startDir` looking for a brain directory. Returns its absolute path, or null if
|
|
75
|
+
* none is found before the filesystem root.
|
|
76
|
+
*
|
|
77
|
+
* Both names are tried at EACH level before moving up a directory, so a nested `.devmind` brain
|
|
78
|
+
* is still found ahead of a `.devsmind` one further up the tree — the nearest brain wins, which
|
|
79
|
+
* is what the caller means by "my project's brain".
|
|
39
80
|
*/
|
|
40
|
-
export declare function
|
|
81
|
+
export declare function findBrainDir(startDir: string): string | null;
|
|
82
|
+
/** @deprecated Pre-4.2.0 name for {@link findBrainDir}. Kept so existing callers keep compiling. */
|
|
83
|
+
export declare const findDevmindDir: typeof findBrainDir;
|
|
41
84
|
/**
|
|
42
|
-
* Resolve the
|
|
43
|
-
*
|
|
44
|
-
* up from the current working directory.
|
|
85
|
+
* Resolve the brain directory for a command: honour an explicit `--path` (which must itself
|
|
86
|
+
* contain a config.json — it points AT the brain, so its folder name is whatever the user chose),
|
|
87
|
+
* otherwise auto-detect by walking up from the current working directory. Null when nothing is
|
|
88
|
+
* found.
|
|
45
89
|
*/
|
|
46
90
|
export declare function resolveDevmindDir(explicitPath?: string): string | null;
|
|
47
91
|
/**
|
package/dist/utils/config.js
CHANGED
|
@@ -33,7 +33,10 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.findDevmindDir =
|
|
36
|
+
exports.findDevmindDir = exports.BRAIN_DIR_NAMES = exports.LEGACY_BRAIN_DIR_NAME = exports.BRAIN_DIR_NAME = void 0;
|
|
37
|
+
exports.resolveBrainDir = resolveBrainDir;
|
|
38
|
+
exports.brainDirOrDefault = brainDirOrDefault;
|
|
39
|
+
exports.findBrainDir = findBrainDir;
|
|
37
40
|
exports.resolveDevmindDir = resolveDevmindDir;
|
|
38
41
|
exports.recoverSpaceSplitPath = recoverSpaceSplitPath;
|
|
39
42
|
exports.loadProjectContext = loadProjectContext;
|
|
@@ -43,33 +46,86 @@ const fs = __importStar(require("fs"));
|
|
|
43
46
|
const path = __importStar(require("path"));
|
|
44
47
|
const dotenv = __importStar(require("dotenv"));
|
|
45
48
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
49
|
+
* The brain directory name `devsmind init` creates, as of 4.2.0.
|
|
50
|
+
*
|
|
51
|
+
* It used to be `.devmind` — one letter off from an unrelated npm package (`devmind-mcp`) that
|
|
52
|
+
* had the name first, so a developer seeing `.devmind/` in a teammate's repo and searching for it
|
|
53
|
+
* landed on someone else's project. Renaming the directory we create fixes that going forward.
|
|
54
|
+
*/
|
|
55
|
+
exports.BRAIN_DIR_NAME = '.devsmind';
|
|
56
|
+
/**
|
|
57
|
+
* The pre-4.2.0 name. Still read, forever — an existing brain is git-committed and team-shared, so
|
|
58
|
+
* renaming one is a repo-wide commit every teammate has to pull. There is no migration and none is
|
|
59
|
+
* needed: nothing inside a brain records its own folder name (`config.json` stores repo-relative
|
|
60
|
+
* paths or `.env` repo keys), so a `.devmind` brain works identically under either name.
|
|
61
|
+
*/
|
|
62
|
+
exports.LEGACY_BRAIN_DIR_NAME = '.devmind';
|
|
63
|
+
/** Both brain directory names, in lookup order — current name first, legacy second. */
|
|
64
|
+
exports.BRAIN_DIR_NAMES = [exports.BRAIN_DIR_NAME, exports.LEGACY_BRAIN_DIR_NAME];
|
|
65
|
+
/**
|
|
66
|
+
* The brain directory sitting DIRECTLY inside `dir` — `.devsmind`, else the legacy `.devmind` —
|
|
67
|
+
* or null when neither is there. Only a directory holding a `config.json` counts, so an empty
|
|
68
|
+
* leftover folder never shadows the real brain next to it.
|
|
69
|
+
*
|
|
70
|
+
* This is the one place the two names are tried. Every other lookup in the codebase goes through
|
|
71
|
+
* here or through {@link findBrainDir}; a hardcoded `'.devmind'` anywhere else is a bug that makes
|
|
72
|
+
* that one code path blind to every brain created since 4.2.0.
|
|
73
|
+
*/
|
|
74
|
+
function resolveBrainDir(dir) {
|
|
75
|
+
const base = path.resolve(dir);
|
|
76
|
+
for (const name of exports.BRAIN_DIR_NAMES) {
|
|
77
|
+
const candidate = path.join(base, name);
|
|
78
|
+
if (fs.existsSync(path.join(candidate, 'config.json')))
|
|
79
|
+
return candidate;
|
|
80
|
+
}
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* {@link resolveBrainDir}, or — when there is no brain yet — the path a NEW one would take.
|
|
85
|
+
* Never null.
|
|
86
|
+
*
|
|
87
|
+
* For callers that need a path to hand onward rather than an answer to "does a brain exist": the
|
|
88
|
+
* web-view routes' `?path=` default, and the CLI's `--path` default. Falling back to the CURRENT
|
|
89
|
+
* name matters, because falling back to the legacy one would point a fresh project at a directory
|
|
90
|
+
* that will never exist.
|
|
48
91
|
*/
|
|
49
|
-
function
|
|
92
|
+
function brainDirOrDefault(dir) {
|
|
93
|
+
return resolveBrainDir(dir) ?? path.join(path.resolve(dir), exports.BRAIN_DIR_NAME);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Walk up from `startDir` looking for a brain directory. Returns its absolute path, or null if
|
|
97
|
+
* none is found before the filesystem root.
|
|
98
|
+
*
|
|
99
|
+
* Both names are tried at EACH level before moving up a directory, so a nested `.devmind` brain
|
|
100
|
+
* is still found ahead of a `.devsmind` one further up the tree — the nearest brain wins, which
|
|
101
|
+
* is what the caller means by "my project's brain".
|
|
102
|
+
*/
|
|
103
|
+
function findBrainDir(startDir) {
|
|
50
104
|
let current = path.resolve(startDir);
|
|
51
105
|
while (true) {
|
|
52
|
-
const
|
|
53
|
-
if (
|
|
54
|
-
return
|
|
55
|
-
}
|
|
106
|
+
const found = resolveBrainDir(current);
|
|
107
|
+
if (found)
|
|
108
|
+
return found;
|
|
56
109
|
const parent = path.dirname(current);
|
|
57
110
|
if (parent === current)
|
|
58
111
|
return null;
|
|
59
112
|
current = parent;
|
|
60
113
|
}
|
|
61
114
|
}
|
|
115
|
+
/** @deprecated Pre-4.2.0 name for {@link findBrainDir}. Kept so existing callers keep compiling. */
|
|
116
|
+
exports.findDevmindDir = findBrainDir;
|
|
62
117
|
/**
|
|
63
|
-
* Resolve the
|
|
64
|
-
*
|
|
65
|
-
* up from the current working directory.
|
|
118
|
+
* Resolve the brain directory for a command: honour an explicit `--path` (which must itself
|
|
119
|
+
* contain a config.json — it points AT the brain, so its folder name is whatever the user chose),
|
|
120
|
+
* otherwise auto-detect by walking up from the current working directory. Null when nothing is
|
|
121
|
+
* found.
|
|
66
122
|
*/
|
|
67
123
|
function resolveDevmindDir(explicitPath) {
|
|
68
124
|
if (explicitPath) {
|
|
69
125
|
const resolved = path.resolve(explicitPath);
|
|
70
126
|
return fs.existsSync(path.join(resolved, 'config.json')) ? resolved : null;
|
|
71
127
|
}
|
|
72
|
-
return
|
|
128
|
+
return findBrainDir(process.cwd());
|
|
73
129
|
}
|
|
74
130
|
/**
|
|
75
131
|
* Rejoins a `--path` value that a shell split on spaces.
|
package/dist/utils/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../src/utils/config.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../src/utils/config.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2EA,0CAOC;AAWD,8CAEC;AAUD,oCASC;AAWD,8CAMC;AAgBD,sDAQC;AAKD,gDA2BC;AAKD,0CAmBC;AAGD,4CAOC;AA7ND,uCAAyB;AACzB,2CAA6B;AAC7B,+CAAiC;AA4CjC;;;;;;GAMG;AACU,QAAA,cAAc,GAAG,WAAW,CAAC;AAE1C;;;;;GAKG;AACU,QAAA,qBAAqB,GAAG,UAAU,CAAC;AAEhD,uFAAuF;AAC1E,QAAA,eAAe,GAAsB,CAAC,sBAAc,EAAE,6BAAqB,CAAC,CAAC;AAE1F;;;;;;;;GAQG;AACH,SAAgB,eAAe,CAAC,GAAW;IACzC,MAAM,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAC/B,KAAK,MAAM,IAAI,IAAI,uBAAe,EAAE,CAAC;QACnC,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACxC,IAAI,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;YAAE,OAAO,SAAS,CAAC;IAC3E,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED;;;;;;;;GAQG;AACH,SAAgB,iBAAiB,CAAC,GAAW;IAC3C,OAAO,eAAe,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,sBAAc,CAAC,CAAC;AAC9E,CAAC;AAED;;;;;;;GAOG;AACH,SAAgB,YAAY,CAAC,QAAgB;IAC3C,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACrC,OAAO,IAAI,EAAE,CAAC;QACZ,MAAM,KAAK,GAAG,eAAe,CAAC,OAAO,CAAC,CAAC;QACvC,IAAI,KAAK;YAAE,OAAO,KAAK,CAAC;QACxB,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACrC,IAAI,MAAM,KAAK,OAAO;YAAE,OAAO,IAAI,CAAC;QACpC,OAAO,GAAG,MAAM,CAAC;IACnB,CAAC;AACH,CAAC;AAED,oGAAoG;AACvF,QAAA,cAAc,GAAG,YAAY,CAAC;AAE3C;;;;;GAKG;AACH,SAAgB,iBAAiB,CAAC,YAAqB;IACrD,IAAI,YAAY,EAAE,CAAC;QACjB,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;QAC5C,OAAO,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC;IAC7E,CAAC;IACD,OAAO,YAAY,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;AACrC,CAAC;AAED;;;;;;;;;;;;;GAaG;AACH,SAAgB,qBAAqB,CAAC,YAAgC,EAAE,aAAuB;IAC7F,IAAI,CAAC,YAAY,IAAI,aAAa,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,YAAY,CAAC;IACrE,IAAI,EAAE,CAAC,UAAU,CAAC,YAAY,CAAC;QAAE,OAAO,YAAY,CAAC;IACrD,KAAK,IAAI,IAAI,GAAG,aAAa,CAAC,MAAM,EAAE,IAAI,GAAG,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC;QACvD,MAAM,SAAS,GAAG,CAAC,YAAY,EAAE,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAC5E,IAAI,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC;YAAE,OAAO,SAAS,CAAC;IACjD,CAAC;IACD,OAAO,YAAY,CAAC;AACtB,CAAC;AAED;;GAEG;AACH,SAAgB,kBAAkB,CAAC,WAAmB;IACpD,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;IAC/C,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;IAC1D,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;IAEhD,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;QAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,UAAU,8BAA8B,CAAC,CAAC;IAChG,CAAC;IAED,mBAAmB;IACnB,MAAM,aAAa,GAAG,EAAE,CAAC,YAAY,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;IAC3D,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAkB,CAAC;IAE1D,yBAAyB;IACzB,MAAM,GAAG,GAA2B,EAAE,CAAC;IACvC,IAAI,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,CAAC;QAC3B,MAAM,UAAU,GAAG,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACrD,MAAM,SAAS,GAAG,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;QAC3C,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE,SAAS,CAAC,CAAC;IAChC,CAAC;IAED,8CAA8C;IAC9C,MAAM,SAAS,GAA0B,GAAG,CAAC,gBAAgB,CAAC;QAC5D,CAAC,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC,gBAAgB,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,iBAAiB,CAAC,IAAI,EAAE,EAAE;QACtE,CAAC,CAAC,SAAS,CAAC;IAEd,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC;AAChE,CAAC;AAED;;GAEG;AACH,SAAgB,eAAe,CAAC,OAAuB,EAAE,QAAgB;IACvE,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,QAAQ,CAAC,CAAC;IACjE,IAAI,CAAC,IAAI;QAAE,OAAO,IAAI,CAAC;IAEvB,IAAI,OAAO,CAAC,MAAM,CAAC,IAAI,KAAK,UAAU,EAAE,CAAC;QACvC,oGAAoG;QACpG,IAAI,eAAe,IAAI,IAAI,IAAI,IAAI,CAAC,aAAa,EAAE,CAAC;YAClD,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;YACvD,OAAO,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;QACvD,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;SAAM,CAAC;QACN,sEAAsE;QACtE,IAAI,UAAU,IAAI,IAAI,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;YACxC,MAAM,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC7C,OAAO,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;QACpD,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;AACH,CAAC;AAED,wFAAwF;AACxF,SAAgB,gBAAgB,CAAC,CAAS;IACxC,IAAI,CAAC,CAAC;QAAE,OAAO,CAAC,CAAC;IACjB,IAAI,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAC/B,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,IAAI,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAChE,QAAQ,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;IAC3D,CAAC;IACD,OAAO,QAAQ,CAAC;AAClB,CAAC"}
|
package/dist/utils/scanner.js
CHANGED
|
@@ -55,7 +55,7 @@ exports.INDEXABLE_EXTENSIONS = new Set([
|
|
|
55
55
|
const ALWAYS_IGNORED = [
|
|
56
56
|
'node_modules', '.git', 'dist', 'build', 'out', '.next',
|
|
57
57
|
'__pycache__', '.venv', 'venv', 'coverage', '.turbo',
|
|
58
|
-
'.cache', '.idea', '.vscode', '.devmind',
|
|
58
|
+
'.cache', '.idea', '.vscode', '.devsmind', '.devmind',
|
|
59
59
|
'.dart_tool', '.gradle', '.symlinks', 'Pods', 'DerivedData', '.expo', 'Carthage'
|
|
60
60
|
];
|
|
61
61
|
function shouldIgnore(filePath, ignoredPaths) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scanner.js","sourceRoot":"","sources":["../../src/utils/scanner.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8EA,sCAsBC;AApGD,uCAAyB;AACzB,2CAA6B;AAC7B,qCAA8E;AAE9E;;;;;;;GAOG;AACU,QAAA,oBAAoB,GAAG,IAAI,GAAG,CAAC;IAC1C,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IAC5C,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM;IAC3C,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,SAAS;CACnD,CAAC,CAAC;AAEH,8FAA8F;AAC9F,MAAM,cAAc,GAAG;IACrB,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO;IACvD,aAAa,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ;IACpD,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,UAAU;
|
|
1
|
+
{"version":3,"file":"scanner.js","sourceRoot":"","sources":["../../src/utils/scanner.ts"],"names":[],"mappings":"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"}
|