-
Notifications
You must be signed in to change notification settings - Fork 25
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
Update dependencies and exports #147
Conversation
c0420ee
to
70cb4e3
Compare
70cb4e3
to
cb22b6f
Compare
@@ -4,6 +4,8 @@ import * as schema from './lib/schema'; | |||
import * as shredder from './lib/shred'; | |||
import * as fields from './lib/fields'; | |||
|
|||
export * from './lib/declare'; |
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.
Export more types for easier use.
}, | ||
{ | ||
rules: { | ||
'no-loss-of-precision': 'off', |
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.
This is so we don't get double warnings. See line 20.
@@ -11,10 +11,11 @@ export default tseslint.config( | |||
...tseslint.configs.strict, | |||
...tseslint.configs.stylistic, | |||
{ | |||
ignores: ['dist/*', 'test/browser/main.js'], | |||
ignores: ['gen-nodejs/*', 'dist/**/*', 'dist/*', 'test/browser/main.js'], |
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.
Merged with the other one that was below this
@@ -44,6 +45,15 @@ export default tseslint.config( | |||
}, | |||
}, | |||
{ | |||
ignores: ['gen-nodejs/*', 'dist/**/*'], | |||
files: ['**/*.test.ts', 'test/**/*', 'examples/**/*'], |
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.
Ignore some things in tests.
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.
great! 👍
A lot of dependencies were out of date. This brings all but the test framework ones to latest.
Also adds the export for declare to have more types exported at the root instead of having to dig.