Skip to content
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: Switch to tsup for building and update dependencies #298

Merged
merged 26 commits into from
Jun 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8d14581
Switch to tsup for building and update extra dependencies
csandman Oct 27, 2023
f9e9ac2
Fix the type exports
csandman Oct 27, 2023
58bbdeb
Remove bundle splitting to reduce package size
csandman Oct 27, 2023
00b6e40
Re-add skipNodeModulesBundle?
csandman Oct 28, 2023
03671eb
remove bundle
csandman Oct 28, 2023
dca82c9
Try switching the module augmentation to a declaration file
csandman Oct 28, 2023
5b35b69
Move module augmentation to the index
csandman Oct 28, 2023
6b86b61
Update all dev deps
csandman Dec 8, 2023
44be711
Make type exporting actually work
csandman Jun 12, 2024
2ea46ff
Merge remote-tracking branch 'origin' into chore/switch-to-tsup
csandman Jun 12, 2024
6956571
Clean package lock
csandman Jun 12, 2024
0817dd8
4.9.0-beta.1
csandman Jun 12, 2024
35d7542
Attempt to switch to type: module
csandman Jun 12, 2024
2347ef4
4.9.0-beta.2
csandman Jun 12, 2024
c090a00
Remove bundle: false but keep type: module
csandman Jun 12, 2024
c927696
4.9.0-beta.3
csandman Jun 12, 2024
75ec885
Keep es2019
csandman Jun 12, 2024
bc99293
4.9.0-beta.4
csandman Jun 12, 2024
1d7d5ae
Remove splitting
csandman Jun 12, 2024
373bda6
Update entry to only be the index
csandman Jun 12, 2024
108f589
4.9.0-beta.5
csandman Jun 12, 2024
170aecd
Remove rimraf
csandman Jun 13, 2024
24a99ec
Remove splitting config
csandman Jun 13, 2024
38cba0f
Fix internal type exports
csandman Jun 29, 2024
c608459
Update remaining dependencies
csandman Jun 29, 2024
05e9e18
Simplify eslint override
csandman Jun 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,17 @@
},
"project": "tsconfig.eslint.json"
},
"plugins": ["deprecation", "@typescript-eslint"],
"plugins": [
"deprecation",
"@typescript-eslint"
],
"rules": {
"deprecation/deprecation": "warn",
"no-console": "error",
"curly": ["error", "all"],
"curly": [
"error",
"all"
],
"no-underscore-dangle": "off",
"import/prefer-default-export": "off",
"react/prop-types": "off",
Expand All @@ -37,7 +43,10 @@
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".tsx"]
"extensions": [
".js",
".tsx"
]
}
],
"react/function-component-definition": [
Expand Down
21 changes: 0 additions & 21 deletions babel.config.js

This file was deleted.

Loading
Loading