sigmap 1.5.1 → 1.5.2
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 +1 -1
- package/gen-context.js +7 -2
- package/package.json +1 -1
- package/src/config/defaults.js +7 -1
- package/src/mcp/server.js +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
[](https://manojmallick.github.io/sigmap)
|
|
26
26
|
[](CHANGELOG.md)
|
|
27
27
|
[](CONTRIBUTING.md)
|
|
28
|
-
[](
|
|
28
|
+
[](https://marketplace.visualstudio.com/items?itemName=manojmallick.sigmap)
|
|
29
29
|
|
|
30
30
|
</div>
|
|
31
31
|
|
package/gen-context.js
CHANGED
|
@@ -35,7 +35,12 @@ __factories["./src/config/defaults"] = function(module, exports) {
|
|
|
35
35
|
outputs: ['copilot'],
|
|
36
36
|
|
|
37
37
|
// Directories to scan (relative to project root)
|
|
38
|
-
srcDirs: [
|
|
38
|
+
srcDirs: [
|
|
39
|
+
'src', 'app', 'lib', 'packages', 'services', 'api',
|
|
40
|
+
'server', 'client', 'web', 'frontend', 'backend',
|
|
41
|
+
'desktop', 'mobile', 'shared', 'common', 'core',
|
|
42
|
+
'workers', 'functions', 'lambda', 'cmd',
|
|
43
|
+
],
|
|
39
44
|
|
|
40
45
|
// Directory/file names to exclude entirely
|
|
41
46
|
exclude: [
|
|
@@ -3219,7 +3224,7 @@ const path = require('path');
|
|
|
3219
3224
|
const os = require('os');
|
|
3220
3225
|
const { execSync } = require('child_process');
|
|
3221
3226
|
|
|
3222
|
-
const VERSION = '1.5.
|
|
3227
|
+
const VERSION = '1.5.2';
|
|
3223
3228
|
const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
|
|
3224
3229
|
|
|
3225
3230
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED
package/src/config/defaults.js
CHANGED
|
@@ -12,7 +12,13 @@ const DEFAULTS = {
|
|
|
12
12
|
outputs: ['copilot'],
|
|
13
13
|
|
|
14
14
|
// Directories to scan (relative to project root)
|
|
15
|
-
srcDirs: [
|
|
15
|
+
srcDirs: [
|
|
16
|
+
'src', 'app', 'lib', 'packages', 'services', 'api',
|
|
17
|
+
// common monorepo / multi-project top-level names
|
|
18
|
+
'server', 'client', 'web', 'frontend', 'backend',
|
|
19
|
+
'desktop', 'mobile', 'shared', 'common', 'core',
|
|
20
|
+
'workers', 'functions', 'lambda', 'cmd',
|
|
21
|
+
],
|
|
16
22
|
|
|
17
23
|
// Directory/file names to exclude entirely
|
|
18
24
|
exclude: [
|
package/src/mcp/server.js
CHANGED