addon-blueprint
addon-blueprint copied to clipboard
Blueprint for v2-formatted Ember addons
fix #289 We should avoid to set `travis` as default value for `ciProvider`, because in this case the `test-app` has in `ember-cli-update.json` as option `--ci-provider=travis`. Travis was deprecated in v5...
New addon v2 creates in `test-app` file `ember-cli-update.json` with option `--ci-provider=travis`
While creating a new ember addon V2 i have seen, that in blueprint there was added travis. Travis CI is was deprecated in v5 see https://deprecations.emberjs.com/ember-cli/v5.x/#toc_travis-ci-support Steps to reproduce: 1....
opening this issue to discuss potential solutions for in package testing of code held by a v2 addon one of the problems faced in testing today's v2 addons are any...
Creating or updating a v2 addon with this blueprint gives an error for the linting in VS code. with the following error `Parsing error: Cannot find module '@babel/plugin-proposal-decorators'` The error...
I think that the `clean` we have in the rollup config causes transient-but-noisy build errors in the test-app. Because it starts the build by removing everything in dist, the test-app...
This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍 ----------------------------------------- ## Release (2024-04-30) @embroider/addon-blueprint 2.17.0 (minor) #### :rocket:...
Like with Vite, Bun, Deno, ESBuild, Parcel, RSpack, etc, I think we should always support typescript as an output, rather than have two varying blueprint outputs / branches. What's great...
When using `--typescript`, - add a plugin that generates the types and fixes the output of those types, due to: - https://github.com/microsoft/TypeScript/issues/56571 - https://github.com/typed-ember/glint/issues/628 Closes: https://github.com/embroider-build/addon-blueprint/issues/248
While addon converting to a V2 and adding glint i have seen, that the rollup script brings this warning `Generated an empty chunk`. I have looked in other addons which...