-
-
Notifications
You must be signed in to change notification settings - Fork 144
docs: Wording for v2 addon format #1667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- Link to v2 addon format documentation. Not everyone understands what is this about. - Generic `documentingAddonAt` of value `addon` is confusing as it _might_ be "standard" ember folder. Bu using `my-awesome-addon` we hint that this is _user_ generated name. - For `addonSrcFolder` use _the default_ value of `src`. If the user just copy-pastes it, it will just work.
\o/ I do do have a good enough-ish fix by bumping node version & making some minor changes. I bundled it with the markdown change as a proof it fixes the build failure for the markdown. But can separate those two if people wan |
.github/workflows/addon-docs.yml
Outdated
@@ -41,7 +41,7 @@ jobs: | |||
cache: pnpm | |||
- name: Install Dependencies | |||
if: env.SHORT_CIRCUIT == 'false' | |||
run: pnpm install --no-lockfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--no-lockfile
? No, just no :)
package.json
Outdated
@@ -36,7 +36,7 @@ | |||
"@glimmer/component": "^1.1.2", | |||
"@glimmer/syntax": "^0.87.1", | |||
"@glimmer/tracking": "^1.1.2", | |||
"@handlebars/parser": "^2.1.0", | |||
"@handlebars/parser": "^2.2.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now we can upgrade
.tool-versions
Outdated
nodejs 20.19 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what does .tool-versions
do? Local development? But let's keep things in sync.
.github/workflows/addon-docs.yml
Outdated
@@ -23,7 +23,7 @@ jobs: | |||
# Fetch tags pointing to the current commit | |||
TAGS=$(git tag --points-at $GITHUB_SHA) | |||
echo "Tags found: $TAGS" | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My IDE is quite oppinionated :)
Ok I reverted the functional changes here and left the PR only for wording changes.
|
documentingAddonAt
of valueaddon
is confusing as it might be "standard" ember folder. Bu usingmy-awesome-addon
we hint that this is user generated name.addonSrcFolder
use the default value ofsrc
. If the user just copy-pastes it, it will just work.