@jaypie/mcp 0.7.15 → 0.7.16
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/suites/docs/index.js +1 -1
- package/package.json +1 -1
- package/release-notes/mcp/0.7.16.md +9 -0
- package/skills/cdk.md +2 -2
- package/skills/cicd-actions.md +4 -4
- package/skills/cicd-deploy.md +1 -1
- package/skills/jaypie.md +1 -1
- package/skills/monorepo.md +1 -1
|
@@ -9,7 +9,7 @@ import { gt } from 'semver';
|
|
|
9
9
|
/**
|
|
10
10
|
* Docs Suite - Documentation services (skill, version, release_notes)
|
|
11
11
|
*/
|
|
12
|
-
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.16#d8b8c444"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
package/skills/cdk.md
CHANGED
|
@@ -80,10 +80,10 @@ const bucket = new JaypieBucket(this, "AssetsBucket", {
|
|
|
80
80
|
|
|
81
81
|
## Stack Structure
|
|
82
82
|
|
|
83
|
-
Organize stacks in the `
|
|
83
|
+
Organize stacks in the `workspaces/` directory:
|
|
84
84
|
|
|
85
85
|
```
|
|
86
|
-
|
|
86
|
+
workspaces/
|
|
87
87
|
├── cdk/
|
|
88
88
|
│ ├── src/
|
|
89
89
|
│ │ ├── app.ts # CDK app entry
|
package/skills/cicd-actions.md
CHANGED
|
@@ -187,7 +187,7 @@ runs:
|
|
|
187
187
|
path: |
|
|
188
188
|
node_modules
|
|
189
189
|
packages/*/node_modules
|
|
190
|
-
|
|
190
|
+
workspaces/*/node_modules
|
|
191
191
|
key: ${{ runner.os }}-node-${{ inputs.node-version }}-${{ hashFiles('**/package-lock.json') }}
|
|
192
192
|
restore-keys: |
|
|
193
193
|
${{ runner.os }}-node-${{ inputs.node-version }}-
|
|
@@ -198,8 +198,8 @@ runs:
|
|
|
198
198
|
with:
|
|
199
199
|
path: |
|
|
200
200
|
packages/*/dist
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
workspaces/*/dist
|
|
202
|
+
workspaces/*/.open-next
|
|
203
203
|
key: ${{ runner.os }}-build-${{ github.sha }}
|
|
204
204
|
restore-keys: |
|
|
205
205
|
${{ runner.os }}-build-
|
|
@@ -255,7 +255,7 @@ inputs:
|
|
|
255
255
|
working-directory:
|
|
256
256
|
description: 'Working directory for CDK commands'
|
|
257
257
|
required: false
|
|
258
|
-
default: '
|
|
258
|
+
default: 'workspaces/cdk'
|
|
259
259
|
require-approval:
|
|
260
260
|
description: 'CDK approval mode (never, any-change, broadening)'
|
|
261
261
|
required: false
|
package/skills/cicd-deploy.md
CHANGED
|
@@ -248,7 +248,7 @@ jobs:
|
|
|
248
248
|
Use consistent stack naming with environment and nonce:
|
|
249
249
|
|
|
250
250
|
```typescript
|
|
251
|
-
//
|
|
251
|
+
// workspaces/cdk/src/app.ts
|
|
252
252
|
const env = process.env.PROJECT_ENV || "sandbox";
|
|
253
253
|
const nonce = process.env.PROJECT_NONCE || "dev";
|
|
254
254
|
|
package/skills/jaypie.md
CHANGED
package/skills/monorepo.md
CHANGED
|
@@ -138,7 +138,7 @@ npm install --save-dev @jaypie/eslint @jaypie/testkit eslint rimraf sort-package
|
|
|
138
138
|
| Directory | Purpose |
|
|
139
139
|
|-----------|---------|
|
|
140
140
|
| `packages/` | npm packages (default workspace) |
|
|
141
|
-
| `
|
|
141
|
+
| `workspaces/` | CDK-deployed infrastructure and sites |
|
|
142
142
|
|
|
143
143
|
## Scripts Reference
|
|
144
144
|
|