Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/dark-nights-argue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"test-app": patch
---

Installed @embroider/try
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:

- id: set-test-matrix
name: Set test matrix
run: echo "matrix=$(pnpx -s @embroider/try list)" >> $GITHUB_OUTPUT
run: echo "matrix=$(pnpm embroider-try list)" >> $GITHUB_OUTPUT
working-directory: 'test-app'


Expand All @@ -219,7 +219,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Make file changes
run: pnpm dlx @embroider/try apply ${{ matrix.name }}
run: pnpm embroider-try apply ${{ matrix.name }}
working-directory: 'test-app'

- name: Install dependencies
Expand Down
15 changes: 15 additions & 0 deletions patches/@embroider__try.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
diff --git a/package.json b/package.json
index a8b93ee7b54ea8712b517539ca0eb2b2a1eb8c54..38933c3a8f5603d864e63640506246b226dad682 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,9 @@
"license": "MIT",
"author": "Edward Faulkner <edward@eaf4.com>",
"type": "module",
- "bin": "cli.js",
+ "bin": {
+ "embroider-try": "cli.js"
+ },
"devDependencies": {
"release-plan": "^0.17.4"
},
15 changes: 15 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ packages:
- docs-app
- packages/ember-container-query
- test-app

patchedDependencies:
'@embroider/try': patches/@embroider__try.patch
1 change: 1 addition & 0 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"@embroider/config-meta-loader": "^1.0.0",
"@embroider/core": "^4.4.3",
"@embroider/router": "^3.0.6",
"@embroider/try": "^1.0.1",
"@embroider/vite": "^1.5.1",
"@glimmer/component": "^2.0.0",
"@glimmer/tracking": "^1.1.2",
Expand Down
Loading