-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve ES build comaptibility (#386)
* chore: upgrade build tooling * chore: move tests to vitest * chore: improve code linting * chore: add pnpm to travis config * chore: remove system file * chore: only support ESM targets * chore: fix package version * fix: merge conflicts
- Loading branch information
1 parent
3f43258
commit f9d655c
Showing
46 changed files
with
4,140 additions
and
7,127 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,7 @@ dist | |
.idea | ||
*.log | ||
package-lock.json | ||
|
||
# System Files | ||
.DS_Store | ||
Thumbs.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
language: node_js | ||
node_js: 11 | ||
node_js: 18 | ||
cache: | ||
npm: false | ||
directories: | ||
- "~/.pnpm-store" | ||
before_install: | ||
- curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7 | ||
- pnpm config set store-dir ~/.pnpm-store | ||
install: | ||
- pnpm install | ||
script: | ||
- yarn format:check | ||
- yarn lint | ||
- yarn test | ||
- pnpm format:check | ||
- pnpm lint | ||
- pnpm test | ||
after_success: | ||
- npx codecov | ||
cache: | ||
directories: | ||
- "$HOME/.npm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.