pi-soly 1.2.0 → 1.4.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 +8 -32
- package/agents-install.ts +11 -98
- package/commands.ts +48 -2
- package/config.ts +4 -6
- package/index.ts +10 -33
- package/package.json +1 -3
- package/skills/soly-framework/SKILL.md +25 -111
- package/agents/soly-manager.md +0 -124
- package/switch/README.md +0 -104
- package/switch/core.ts +0 -229
- package/switch/index.ts +0 -347
- package/switch/package.json +0 -52
- package/switch/prompt.ts +0 -131
- package/switch/tests/core.test.ts +0 -210
- package/switch/tests/index.test.ts +0 -48
- package/switch/tests/prompt.test.ts +0 -108
- package/switch/tsconfig.json +0 -28
|
@@ -1,210 +0,0 @@
|
|
|
1
|
-
// =============================================================================
|
|
2
|
-
// tests/core.test.ts — Tests for pi-switch core
|
|
3
|
-
// =============================================================================
|
|
4
|
-
|
|
5
|
-
/// <reference types="bun-types" />
|
|
6
|
-
import { describe, test, expect, beforeAll, afterAll } from "bun:test";
|
|
7
|
-
import * as fs from "node:fs";
|
|
8
|
-
import * as os from "node:os";
|
|
9
|
-
import * as path from "node:path";
|
|
10
|
-
import {
|
|
11
|
-
DEFAULT_ROTOR,
|
|
12
|
-
BUILTIN_ROTORS,
|
|
13
|
-
ROTOR_META,
|
|
14
|
-
getRotorMeta,
|
|
15
|
-
isValidRotorName,
|
|
16
|
-
discoverUserRotors,
|
|
17
|
-
availableAgents,
|
|
18
|
-
nextAgent,
|
|
19
|
-
parseRotorName,
|
|
20
|
-
formatAgentBadge,
|
|
21
|
-
formatRotorSwitchNotify,
|
|
22
|
-
formatHeaderLine,
|
|
23
|
-
groupedAvailableRotors,
|
|
24
|
-
agentFilePath,
|
|
25
|
-
loadAgent,
|
|
26
|
-
saveAgent,
|
|
27
|
-
} from "../core.js";
|
|
28
|
-
|
|
29
|
-
describe("DEFAULT_ROTOR", () => {
|
|
30
|
-
test("is 'worker'", () => {
|
|
31
|
-
expect(DEFAULT_ROTOR).toBe("worker");
|
|
32
|
-
});
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
describe("isValidRotorName", () => {
|
|
36
|
-
test("accepts simple names", () => {
|
|
37
|
-
expect(isValidRotorName("worker")).toBe(true);
|
|
38
|
-
expect(isValidRotorName("my_agent")).toBe(true);
|
|
39
|
-
});
|
|
40
|
-
test("rejects invalid", () => {
|
|
41
|
-
expect(isValidRotorName("with space")).toBe(false);
|
|
42
|
-
expect(isValidRotorName("")).toBe(false);
|
|
43
|
-
expect(isValidRotorName("a".repeat(65))).toBe(false);
|
|
44
|
-
});
|
|
45
|
-
});
|
|
46
|
-
|
|
47
|
-
describe("ROTOR_META", () => {
|
|
48
|
-
test("every built-in has metadata", () => {
|
|
49
|
-
for (const a of BUILTIN_ROTORS) {
|
|
50
|
-
expect(ROTOR_META[a]).toBeDefined();
|
|
51
|
-
expect(ROTOR_META[a]!.emoji.length).toBeGreaterThan(0);
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
test("meta has writesFiles flag", () => {
|
|
55
|
-
expect(ROTOR_META.worker!.writesFiles).toBe(true);
|
|
56
|
-
expect(ROTOR_META.oracle!.writesFiles).toBe(false);
|
|
57
|
-
});
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
describe("getRotorMeta", () => {
|
|
61
|
-
test("returns fallback for unknown", () => {
|
|
62
|
-
const m = getRotorMeta("zzz");
|
|
63
|
-
expect(m.emoji.length).toBeGreaterThan(0);
|
|
64
|
-
});
|
|
65
|
-
});
|
|
66
|
-
|
|
67
|
-
describe("nextAgent", () => {
|
|
68
|
-
test("cycles forward", () => {
|
|
69
|
-
expect(nextAgent("a", ["a", "b", "c"])).toBe("b");
|
|
70
|
-
expect(nextAgent("c", ["a", "b", "c"])).toBe("a");
|
|
71
|
-
});
|
|
72
|
-
test("returns first if current not in cycle", () => {
|
|
73
|
-
expect(nextAgent("zzz", ["a", "b"])).toBe("a");
|
|
74
|
-
});
|
|
75
|
-
});
|
|
76
|
-
|
|
77
|
-
describe("parseRotorName", () => {
|
|
78
|
-
test("trims and validates", () => {
|
|
79
|
-
expect(parseRotorName(" oracle ")).toBe("oracle");
|
|
80
|
-
expect(parseRotorName("with space")).toBeNull();
|
|
81
|
-
});
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
describe("formatAgentBadge", () => {
|
|
85
|
-
test("null for default", () => {
|
|
86
|
-
expect(formatAgentBadge(DEFAULT_ROTOR)).toBeNull();
|
|
87
|
-
});
|
|
88
|
-
test("emoji + name for non-default", () => {
|
|
89
|
-
const b = formatAgentBadge("oracle");
|
|
90
|
-
expect(b).toContain("oracle");
|
|
91
|
-
});
|
|
92
|
-
});
|
|
93
|
-
|
|
94
|
-
describe("formatRotorSwitchNotify", () => {
|
|
95
|
-
test("multi-line: old → new + capability", () => {
|
|
96
|
-
const out = formatRotorSwitchNotify("worker", "oracle");
|
|
97
|
-
expect(out).toContain("pi-switch agent changed");
|
|
98
|
-
expect(out).toContain("worker");
|
|
99
|
-
expect(out).toContain("oracle");
|
|
100
|
-
expect(out).toContain("writes files: no");
|
|
101
|
-
});
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
describe("formatHeaderLine", () => {
|
|
105
|
-
test("always non-empty (even for default)", () => {
|
|
106
|
-
const h = formatHeaderLine("worker");
|
|
107
|
-
expect(h).toContain("worker");
|
|
108
|
-
expect(h).toContain("Ctrl+Tab");
|
|
109
|
-
});
|
|
110
|
-
test("includes read-only tag when applicable", () => {
|
|
111
|
-
const h = formatHeaderLine("oracle");
|
|
112
|
-
expect(h).toContain("read-only");
|
|
113
|
-
});
|
|
114
|
-
test("omits read-only tag when agent writes", () => {
|
|
115
|
-
const h = formatHeaderLine("worker");
|
|
116
|
-
expect(h).not.toContain("read-only");
|
|
117
|
-
});
|
|
118
|
-
});
|
|
119
|
-
|
|
120
|
-
describe("groupedAvailableRotors", () => {
|
|
121
|
-
test("includes built-in group", () => {
|
|
122
|
-
const groups = groupedAvailableRotors("/nonexistent");
|
|
123
|
-
expect(groups[0]?.header).toBe("built-in");
|
|
124
|
-
});
|
|
125
|
-
test("includes user group when present", () => {
|
|
126
|
-
// Use HOME override so the new ~.agents/ scan picks up our fixture
|
|
127
|
-
const home = process.env.HOME || process.env.USERPROFILE || os.homedir();
|
|
128
|
-
const prevHome = process.env.HOME;
|
|
129
|
-
const prevUserProfile = process.env.USERPROFILE;
|
|
130
|
-
const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "pis-home-"));
|
|
131
|
-
process.env.HOME = tmp;
|
|
132
|
-
process.env.USERPROFILE = tmp;
|
|
133
|
-
const agentsDir = path.join(tmp, ".agents");
|
|
134
|
-
fs.mkdirSync(agentsDir, { recursive: true });
|
|
135
|
-
fs.writeFileSync(path.join(agentsDir, "my.md"), "---\nname: my-helper\n---\n# body\n");
|
|
136
|
-
const groups = groupedAvailableRotors();
|
|
137
|
-
const userGroup = groups.find((g) => g.header === "user-defined");
|
|
138
|
-
expect(userGroup?.agents).toContain("my-helper");
|
|
139
|
-
// restore
|
|
140
|
-
process.env.HOME = prevHome ?? home;
|
|
141
|
-
process.env.USERPROFILE = prevUserProfile ?? home;
|
|
142
|
-
fs.rmSync(tmp, { recursive: true, force: true });
|
|
143
|
-
});
|
|
144
|
-
|
|
145
|
-
test("includes project agent when present (cwd scope)", () => {
|
|
146
|
-
const projectDir = fs.mkdtempSync(path.join(os.tmpdir(), "pis-proj-"));
|
|
147
|
-
const agentsDir = path.join(projectDir, ".agents");
|
|
148
|
-
fs.mkdirSync(agentsDir, { recursive: true });
|
|
149
|
-
fs.writeFileSync(path.join(agentsDir, "proj.md"), "---\nname: project-helper\n---\n# body\n");
|
|
150
|
-
const groups = groupedAvailableRotors(projectDir);
|
|
151
|
-
const userGroup = groups.find((g) => g.header === "user-defined");
|
|
152
|
-
expect(userGroup?.agents).toContain("project-helper");
|
|
153
|
-
fs.rmSync(projectDir, { recursive: true, force: true });
|
|
154
|
-
});
|
|
155
|
-
});
|
|
156
|
-
|
|
157
|
-
// ---------------------------------------------------------------------------
|
|
158
|
-
// Persistence
|
|
159
|
-
// ---------------------------------------------------------------------------
|
|
160
|
-
|
|
161
|
-
describe("agentFilePath", () => {
|
|
162
|
-
test("prefers .soly/agent when soly dir exists", () => {
|
|
163
|
-
const cwd = fs.mkdtempSync(path.join(os.tmpdir(), "pis-path-"));
|
|
164
|
-
fs.mkdirSync(path.join(cwd, ".soly"), { recursive: true });
|
|
165
|
-
expect(agentFilePath(cwd)).toBe(path.join(cwd, ".soly", "agent"));
|
|
166
|
-
fs.rmSync(cwd, { recursive: true, force: true });
|
|
167
|
-
});
|
|
168
|
-
test("falls back to ~/.pi-switch/agent when no soly", () => {
|
|
169
|
-
const cwd = fs.mkdtempSync(path.join(os.tmpdir(), "pis-fb-"));
|
|
170
|
-
// Ensure no .soly in cwd
|
|
171
|
-
expect(agentFilePath(cwd)).toContain(".pi-switch");
|
|
172
|
-
fs.rmSync(cwd, { recursive: true, force: true });
|
|
173
|
-
});
|
|
174
|
-
});
|
|
175
|
-
|
|
176
|
-
describe("loadAgent / saveAgent", () => {
|
|
177
|
-
let tmpCwd: string;
|
|
178
|
-
let origHome: string | undefined;
|
|
179
|
-
beforeAll(() => {
|
|
180
|
-
tmpCwd = fs.mkdtempSync(path.join(os.tmpdir(), "pis-rt-"));
|
|
181
|
-
origHome = process.env.HOME;
|
|
182
|
-
process.env.HOME = tmpCwd;
|
|
183
|
-
});
|
|
184
|
-
afterAll(() => {
|
|
185
|
-
if (origHome) process.env.HOME = origHome;
|
|
186
|
-
fs.rmSync(tmpCwd, { recursive: true, force: true });
|
|
187
|
-
});
|
|
188
|
-
|
|
189
|
-
test("round-trip", () => {
|
|
190
|
-
saveAgent(tmpCwd, "oracle");
|
|
191
|
-
expect(loadAgent(tmpCwd)).toBe("oracle");
|
|
192
|
-
});
|
|
193
|
-
test("returns null when file missing", () => {
|
|
194
|
-
const freshHome = fs.mkdtempSync(path.join(os.tmpdir(), "pis-fresh-"));
|
|
195
|
-
fs.mkdirSync(path.join(freshHome, ".pi-switch"), { recursive: true });
|
|
196
|
-
const prevHome = process.env.HOME;
|
|
197
|
-
process.env.HOME = freshHome;
|
|
198
|
-
try {
|
|
199
|
-
expect(loadAgent("/anywhere")).toBeNull();
|
|
200
|
-
} finally {
|
|
201
|
-
process.env.HOME = prevHome;
|
|
202
|
-
}
|
|
203
|
-
fs.rmSync(freshHome, { recursive: true, force: true });
|
|
204
|
-
});
|
|
205
|
-
test("rejects invalid name on load", () => {
|
|
206
|
-
const file = agentFilePath(tmpCwd);
|
|
207
|
-
fs.writeFileSync(file, "with space\n", "utf-8");
|
|
208
|
-
expect(loadAgent(tmpCwd)).toBeNull();
|
|
209
|
-
});
|
|
210
|
-
});
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
// =============================================================================
|
|
2
|
-
// tests/index.test.ts — Regression tests for index.ts handlers
|
|
3
|
-
// =============================================================================
|
|
4
|
-
//
|
|
5
|
-
// These exercise the agent-command dispatch without spinning up a real
|
|
6
|
-
// pi session. We test the parse logic by feeding the same input strings
|
|
7
|
-
// through a hand-rolled mock and inspecting the notify/output side-effects.
|
|
8
|
-
|
|
9
|
-
/// <reference types="bun-types" />
|
|
10
|
-
import { describe, test, expect } from "bun:test";
|
|
11
|
-
import { availableAgents } from "../core.js";
|
|
12
|
-
|
|
13
|
-
describe("/agent handler parse logic (regression for `/agent researcher` bug)", () => {
|
|
14
|
-
// The original bug: `/agent researcher` was interpreted as "show list"
|
|
15
|
-
// instead of "set agent to researcher" because the parser only checked
|
|
16
|
-
// the SECOND token, not the first. (After cycle reduction, `researcher`
|
|
17
|
-
// is no longer a built-in, so we use `oracle` as the example agent.)
|
|
18
|
-
test("single-arg '/agent <name>' is a set, not a list", () => {
|
|
19
|
-
const input = "oracle";
|
|
20
|
-
const parts = input.trim().split(/\s+/);
|
|
21
|
-
const subcommand = parts[0]?.toLowerCase();
|
|
22
|
-
const cycle = availableAgents();
|
|
23
|
-
// Single known agent → set, not show
|
|
24
|
-
expect(parts.length).toBe(1);
|
|
25
|
-
expect(cycle.includes(subcommand ?? "")).toBe(true);
|
|
26
|
-
});
|
|
27
|
-
test("'/agent create <name>' → create subcommand", () => {
|
|
28
|
-
const input = "create my-debugger";
|
|
29
|
-
const subcommand = input.trim().split(/\s+/)[0];
|
|
30
|
-
expect(subcommand).toBe("create");
|
|
31
|
-
});
|
|
32
|
-
test("'/agent doctor' → doctor subcommand", () => {
|
|
33
|
-
const input = "doctor";
|
|
34
|
-
const subcommand = input.trim().split(/\s+/)[0];
|
|
35
|
-
expect(subcommand).toBe("doctor");
|
|
36
|
-
});
|
|
37
|
-
test("'/agent recommend <task>' → recommend subcommand", () => {
|
|
38
|
-
const input = "recommend investigate the bug";
|
|
39
|
-
const subcommand = input.trim().split(/\s+/)[0];
|
|
40
|
-
expect(subcommand).toBe("recommend");
|
|
41
|
-
});
|
|
42
|
-
test("'/agent <unknown>' falls through to error (NOT set)", () => {
|
|
43
|
-
const input = "nonexistent-agent-xyz";
|
|
44
|
-
const subcommand = input.trim().split(/\s+/)[0];
|
|
45
|
-
const cycle = availableAgents();
|
|
46
|
-
expect(cycle.includes(subcommand ?? "")).toBe(false);
|
|
47
|
-
});
|
|
48
|
-
});
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
// =============================================================================
|
|
2
|
-
// tests/prompt.test.ts — Tests for the system-prompt section + recommendAgent
|
|
3
|
-
// =============================================================================
|
|
4
|
-
|
|
5
|
-
/// <reference types="bun-types" />
|
|
6
|
-
import { describe, test, expect } from "bun:test";
|
|
7
|
-
import { buildPiSwitchSection, recommendAgent, TASK_AGENT_HINTS } from "../prompt.js";
|
|
8
|
-
|
|
9
|
-
describe("buildPiSwitchSection", () => {
|
|
10
|
-
const s = buildPiSwitchSection();
|
|
11
|
-
|
|
12
|
-
test("starts with header", () => {
|
|
13
|
-
expect(s.trim().startsWith("## pi-switch")).toBe(true);
|
|
14
|
-
});
|
|
15
|
-
test("mentions /agent command and Ctrl+Tab", () => {
|
|
16
|
-
expect(s).toContain("/agent");
|
|
17
|
-
expect(s).toContain("Ctrl+Tab");
|
|
18
|
-
});
|
|
19
|
-
test("explains built-in categories", () => {
|
|
20
|
-
expect(s).toContain("oracle");
|
|
21
|
-
expect(s).toContain("scout");
|
|
22
|
-
expect(s).toContain("worker");
|
|
23
|
-
});
|
|
24
|
-
test("mentions soly-manager as the single subagent", () => {
|
|
25
|
-
expect(s).toContain("soly-manager");
|
|
26
|
-
});
|
|
27
|
-
test("explains user-defined", () => {
|
|
28
|
-
expect(s).toMatch(/user[- ]?defined/i);
|
|
29
|
-
expect(s).toContain("~/.pi/agent/agents/");
|
|
30
|
-
});
|
|
31
|
-
test("has anti-patterns", () => {
|
|
32
|
-
expect(s).toContain("DON");
|
|
33
|
-
});
|
|
34
|
-
test("includes task→agent heuristics table", () => {
|
|
35
|
-
expect(s).toContain("debug");
|
|
36
|
-
expect(s).toContain("refactor");
|
|
37
|
-
});
|
|
38
|
-
test("is reasonably short (< 5KB)", () => {
|
|
39
|
-
expect(s.length).toBeLessThan(5000);
|
|
40
|
-
});
|
|
41
|
-
});
|
|
42
|
-
|
|
43
|
-
describe("TASK_AGENT_HINTS", () => {
|
|
44
|
-
test("every hint has required fields", () => {
|
|
45
|
-
for (const h of TASK_AGENT_HINTS) {
|
|
46
|
-
expect(h.agent.length).toBeGreaterThan(0);
|
|
47
|
-
expect(h.emoji.length).toBeGreaterThan(0);
|
|
48
|
-
expect(h.why.length).toBeGreaterThan(5);
|
|
49
|
-
expect(h.pattern).toBeInstanceOf(RegExp);
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
describe("recommendAgent", () => {
|
|
55
|
-
test("research keywords → researcher (English)", () => {
|
|
56
|
-
expect(recommendAgent("look up the latest pi-subagents API")?.agent).toBe("researcher");
|
|
57
|
-
expect(recommendAgent("what is the best lib for X?")?.agent).toBe("researcher");
|
|
58
|
-
});
|
|
59
|
-
test("research keywords → researcher (Russian)", () => {
|
|
60
|
-
expect(recommendAgent("Изучи React Server Components")?.agent).toBe("researcher");
|
|
61
|
-
expect(recommendAgent("Найди инфу про Zustand")?.agent).toBe("researcher");
|
|
62
|
-
});
|
|
63
|
-
test("debug keywords → soly-manager", () => {
|
|
64
|
-
expect(recommendAgent("fix this bug")?.agent).toBe("soly-manager");
|
|
65
|
-
expect(recommendAgent("why is this crash happening")?.agent).toBe("soly-manager");
|
|
66
|
-
expect(recommendAgent("repro the failing test")?.agent).toBe("soly-manager");
|
|
67
|
-
expect(recommendAgent("Почему падает тест?")?.agent).toBe("soly-manager");
|
|
68
|
-
});
|
|
69
|
-
test("refactor keywords → soly-manager", () => {
|
|
70
|
-
expect(recommendAgent("refactor this function")?.agent).toBe("soly-manager");
|
|
71
|
-
expect(recommendAgent("simplify the auth flow")?.agent).toBe("soly-manager");
|
|
72
|
-
expect(recommendAgent("Упрости эту функцию")?.agent).toBe("soly-manager");
|
|
73
|
-
});
|
|
74
|
-
test("test keywords → soly-manager", () => {
|
|
75
|
-
expect(recommendAgent("write tests for the parser")?.agent).toBe("soly-manager");
|
|
76
|
-
expect(recommendAgent("improve coverage")?.agent).toBe("soly-manager");
|
|
77
|
-
expect(recommendAgent("Напиши тесты для парсера")?.agent).toBe("soly-manager");
|
|
78
|
-
});
|
|
79
|
-
test("review keywords → reviewer", () => {
|
|
80
|
-
expect(recommendAgent("review this PR")?.agent).toBe("reviewer");
|
|
81
|
-
expect(recommendAgent("audit the security")?.agent).toBe("reviewer");
|
|
82
|
-
expect(recommendAgent("Проверь этот код")?.agent).toBe("reviewer");
|
|
83
|
-
});
|
|
84
|
-
test("docs keywords → soly-manager", () => {
|
|
85
|
-
expect(recommendAgent("update the readme")?.agent).toBe("soly-manager");
|
|
86
|
-
expect(recommendAgent("add jsdoc to the function")?.agent).toBe("soly-manager");
|
|
87
|
-
expect(recommendAgent("Обнови документацию")?.agent).toBe("soly-manager");
|
|
88
|
-
});
|
|
89
|
-
test("plan keywords → soly-manager", () => {
|
|
90
|
-
expect(recommendAgent("plan the migration")?.agent).toBe("soly-manager");
|
|
91
|
-
expect(recommendAgent("design the API")?.agent).toBe("soly-manager");
|
|
92
|
-
expect(recommendAgent("Спланируй миграцию")?.agent).toBe("soly-manager");
|
|
93
|
-
});
|
|
94
|
-
test("implement keywords → worker", () => {
|
|
95
|
-
expect(recommendAgent("implement the feature")?.agent).toBe("worker");
|
|
96
|
-
expect(recommendAgent("build the auth module")?.agent).toBe("worker");
|
|
97
|
-
expect(recommendAgent("Сделай эту фичу")?.agent).toBe("worker");
|
|
98
|
-
});
|
|
99
|
-
test("no match → null", () => {
|
|
100
|
-
expect(recommendAgent("hello world")).toBeNull();
|
|
101
|
-
expect(recommendAgent("")).toBeNull();
|
|
102
|
-
});
|
|
103
|
-
test("returns emoji and why", () => {
|
|
104
|
-
const r = recommendAgent("fix this bug");
|
|
105
|
-
expect(r?.emoji).toBeTruthy();
|
|
106
|
-
expect(r?.why).toBeTruthy();
|
|
107
|
-
});
|
|
108
|
-
});
|
package/switch/tsconfig.json
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "esnext",
|
|
4
|
-
"module": "nodenext",
|
|
5
|
-
"moduleResolution": "nodenext",
|
|
6
|
-
"lib": [
|
|
7
|
-
"esnext"
|
|
8
|
-
],
|
|
9
|
-
"types": [
|
|
10
|
-
"node"
|
|
11
|
-
],
|
|
12
|
-
"skipLibCheck": true,
|
|
13
|
-
"noEmit": true,
|
|
14
|
-
"strict": true,
|
|
15
|
-
"esModuleInterop": true,
|
|
16
|
-
"allowSyntheticDefaultImports": true,
|
|
17
|
-
"resolveJsonModule": true,
|
|
18
|
-
"forceConsistentCasingInFileNames": true,
|
|
19
|
-
"noUncheckedIndexedAccess": false,
|
|
20
|
-
"allowImportingTsExtensions": true
|
|
21
|
-
},
|
|
22
|
-
"include": [
|
|
23
|
-
"**/*.ts"
|
|
24
|
-
],
|
|
25
|
-
"exclude": [
|
|
26
|
-
"node_modules"
|
|
27
|
-
]
|
|
28
|
-
}
|