-
Notifications
You must be signed in to change notification settings - Fork 0
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
Added blueprints for create-v2-addon-repo (Part 3) #14
Conversation
function getFilesToSkip(): string[] { | ||
const files = new Set<string>(); | ||
|
||
if (ENABLE_TEMPLATE_TAG) { | ||
files.add('__fileName__.ts'); | ||
} else { | ||
files.add('__fileName__.gts'); | ||
} | ||
|
||
return Array.from(files); | ||
} |
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.
TODO
Configure eslint
and typescript
so that lint:fix
doesn't error when there are *.gts
files in test-app
.
61503bf
to
7e37289
Compare
@@ -30,7 +30,6 @@ | |||
"@ember/optional-features": "^2.1.0", | |||
"@ember/string": "^3.1.1", | |||
"@ember/test-helpers": "^3.3.0", | |||
"@embroider/broccoli-side-watch": "0.0.2-unstable.ba9fd29", |
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.
TODO
Check if this is still needed in docs-app
and test-app
. Live reload seemed to work without in test-app
.
7e37289
to
39d1c2a
Compare
39d1c2a
to
a4b2ed9
Compare
a4b2ed9
to
46ea2a9
Compare
path: | | ||
packages/**/declarations/**/* | ||
packages/**/dist/**/* | ||
packages/.gitkeep |
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.
TECHNICAL RISK
actions/download-artifact@v4
errors when there is no artifact to download, and doesn't provide an option to avoid this error. To help CI pass from the start, I added packages/.gitkeep
.
No description provided.