a11y-devkit-deploy 0.9.2 → 0.9.3
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 -7
- package/package.json +1 -1
- package/src/cli.js +2 -1
- /package/config/{a11y.json → settings.json} +0 -0
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ All MCP servers are configured to run via `npx`, which means:
|
|
|
64
64
|
|
|
65
65
|
This CLI automates the setup of accessibility tooling by:
|
|
66
66
|
|
|
67
|
-
1. **Installing skills from npm** - Downloads and installs accessibility skill packages (configurable in `config/
|
|
67
|
+
1. **Installing skills from npm** - Downloads and installs accessibility skill packages (configurable in `config/settings.json`)
|
|
68
68
|
2. **Configuring MCP servers** - Updates each IDE's MCP config to enable accessibility-focused MCP servers (also configurable)
|
|
69
69
|
|
|
70
70
|
**Default configuration includes:**
|
|
@@ -80,7 +80,7 @@ This CLI automates the setup of accessibility tooling by:
|
|
|
80
80
|
|
|
81
81
|
## Why This Tool?
|
|
82
82
|
|
|
83
|
-
**Zero Hardcoded Values** - Every aspect of the tool is driven by `config/
|
|
83
|
+
**Zero Hardcoded Values** - Every aspect of the tool is driven by `config/settings.json`:
|
|
84
84
|
- IDE paths and configuration files
|
|
85
85
|
- Skills to install
|
|
86
86
|
- MCP servers to configure
|
|
@@ -104,7 +104,7 @@ This CLI automates the setup of accessibility tooling by:
|
|
|
104
104
|
|
|
105
105
|
### Skills Installed (Default)
|
|
106
106
|
|
|
107
|
-
The following skill packages are installed from npm by default. **Add your own by editing `config/
|
|
107
|
+
The following skill packages are installed from npm by default. **Add your own by editing `config/settings.json`**:
|
|
108
108
|
|
|
109
109
|
| Skill | Package | Description |
|
|
110
110
|
|-------|---------|-------------|
|
|
@@ -143,7 +143,7 @@ The generated MCP config looks like this:
|
|
|
143
143
|
|
|
144
144
|
## Configuration
|
|
145
145
|
|
|
146
|
-
The entire tool is **fully config-driven**. Edit `config/
|
|
146
|
+
The entire tool is **fully config-driven**. Edit `config/settings.json` to customize everything without touching code.
|
|
147
147
|
|
|
148
148
|
### Adding a New Skill
|
|
149
149
|
|
|
@@ -293,11 +293,11 @@ your-project/
|
|
|
293
293
|
# macOS: ~/Library/Application Support/Code/User/mcp.json
|
|
294
294
|
```
|
|
295
295
|
|
|
296
|
-
**Note:** Paths are fully customizable per IDE in `config/
|
|
296
|
+
**Note:** Paths are fully customizable per IDE in `config/settings.json`
|
|
297
297
|
|
|
298
298
|
## MCP Servers Included (Default)
|
|
299
299
|
|
|
300
|
-
**Add your own by editing `config/
|
|
300
|
+
**Add your own by editing `config/settings.json`**:
|
|
301
301
|
|
|
302
302
|
| Server | Package | Description |
|
|
303
303
|
|--------|---------|-------------|
|
|
@@ -309,7 +309,7 @@ your-project/
|
|
|
309
309
|
|
|
310
310
|
## Complete Config Example
|
|
311
311
|
|
|
312
|
-
Here's what a complete `config/
|
|
312
|
+
Here's what a complete `config/settings.json` looks like:
|
|
313
313
|
|
|
314
314
|
```json
|
|
315
315
|
{
|
|
@@ -366,3 +366,4 @@ Here's what a complete `config/a11y.json` looks like:
|
|
|
366
366
|
```
|
|
367
367
|
|
|
368
368
|
Everything is customizable - add, remove, or modify any section to match your needs.
|
|
369
|
+
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -34,7 +34,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
34
34
|
const __dirname = path.dirname(__filename);
|
|
35
35
|
|
|
36
36
|
async function loadConfig() {
|
|
37
|
-
const configPath = path.join(__dirname, "..", "config", "
|
|
37
|
+
const configPath = path.join(__dirname, "..", "config", "settings.json");
|
|
38
38
|
const raw = await fs.readFile(configPath, "utf8");
|
|
39
39
|
return JSON.parse(raw);
|
|
40
40
|
}
|
|
@@ -733,3 +733,4 @@ async function runGitMcpInstallation(projectRoot, platformInfo, config, hostPath
|
|
|
733
733
|
}
|
|
734
734
|
|
|
735
735
|
export { run };
|
|
736
|
+
|
|
File without changes
|