-
Notifications
You must be signed in to change notification settings - Fork 2
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
chore(): ungulpify #6
Conversation
- adds types, prettier, lint-staged, CI, usual suspects - changes `xmldom` dep to `@xmldom/xmldom`
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
just reopening #4 so I can stack PRs on it |
fwiw I'm not eager to merge this until I can run some E2E tests, which I hope to get setup today |
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.
looks great! yes when you are satisfied with e2e results, let's do it
@@ -0,0 +1,13 @@ | |||
# editorconfig.org |
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.
TIL
@@ -0,0 +1 @@ | |||
*.tsbuildinfo |
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.
question: i forget how .npmignore works. is it additive to what's in .gitignore?
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.
npm does not consider .gitignore
when publishing files (otherwise build artifacts would not get published); it only considers the files
prop (which is an allow-list) and the .npmignore
file (which is a deny-list).
adds types, prettier, lint-staged, CI, usual suspects
typechecking is disabled; fixes for types should be in another PR (likewise formatting)