Skip to content

Commit 42ae6df

Browse files
authored
Merge pull request #49 from eBay/main
merge from main
2 parents 163f3e8 + 779320d commit 42ae6df

252 files changed

Lines changed: 22253 additions & 53530 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 18.13.0
21+
node-version: 22.17.0
2222

2323
- uses: pnpm/action-setup@v3
2424
with:

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 18.13.0
21+
node-version: 22.17.0
2222
registry-url: 'https://registry.npmjs.org'
2323

2424
- uses: pnpm/action-setup@v3

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,5 @@ build
120120
node_modules
121121
~
122122

123-
vite.config.*.timestamp-*
123+
vite.config.*.timestamp-*
124+
.claude

CLAUDE.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -265,14 +265,6 @@ When working with `muse-express-middleware`, these are the key endpoints:
265265

266266
**File reference**: `workspace/packages/muse-express-middleware/lib/index.js`
267267

268-
### Plugin Development
269-
270-
When creating plugins, remember:
271-
272-
1. Plugin type is declared in `package.json` under `muse.type`
273-
2. Entry point can be customized via `muse.entry` field
274-
3. Build outputs must go to `dist/` (production) and `dev/` (development)
275-
4. Shared modules in lib plugins must be declared in `muse.exposes`
276268

277269
### Muse Runner
278270

@@ -308,7 +300,6 @@ The webpack plugin handles:
308300
### Vite Plugin
309301

310302
Similar functionality for Vite-based builds:
311-
- Module federation-like shared dependencies
312303
- Manifest generation
313304
- Dev server integration
314305

examples/demo-controller-plugin/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "demo-controller-plugin",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/ebay/Muse",
6+
"directory": "examples/demo-controller-plugin"
7+
},
38
"version": "1.0.0",
49
"private": true,
510
"type": "module",
@@ -52,4 +57,4 @@
5257
"last 1 safari version"
5358
]
5459
}
55-
}
60+
}

examples/demo-init-plugin/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "demo-init-plugin",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/ebay/Muse",
6+
"directory": "examples/demo-init-plugin"
7+
},
38
"version": "1.0.0",
49
"description": "",
510
"type": "module",
@@ -25,4 +30,4 @@
2530
"keywords": [],
2631
"author": "",
2732
"license": "MIT"
28-
}
33+
}

examples/doc-plugin/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "doc-plugin",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/ebay/Muse",
6+
"directory": "examples/doc-plugin"
7+
},
38
"version": "1.0.0",
49
"private": true,
510
"type": "module",
@@ -54,4 +59,4 @@
5459
"app": "myapp"
5560
}
5661
}
57-
}
62+
}

examples/roles-plugin/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "roles-plugin",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/ebay/Muse",
6+
"directory": "examples/roles-plugin"
7+
},
38
"version": "1.0.0",
49
"private": true,
510
"type": "module",

examples/users-plugin/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "users-plugin",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/ebay/Muse",
6+
"directory": "examples/users-plugin"
7+
},
38
"version": "1.0.0",
49
"private": true,
510
"type": "module",

muse-ci-tools/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "@ebay/muse-ci-tools",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/ebay/Muse",
6+
"directory": "muse-ci-tools"
7+
},
38
"version": "1.0.0",
49
"description": "",
510
"main": "index.js",

0 commit comments

Comments
 (0)