-
Notifications
You must be signed in to change notification settings - Fork 284
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
feat: add default to current timestamp #1175
base: v0.28
Are you sure you want to change the base?
feat: add default to current timestamp #1175
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
…kysely-org#1085) * add reusable helpers recipe and implement missing expression features * force node 22.4.1 in CI because of an npm bug
* feat: add postgres range types (kysely-org#1086) * feat: support refresh naterialized view * fix tests by adding .materialized() to remove the matview * fix failing test * fix: References typo (kysely-org#1092) * chore: refresh-view-node.ts => refresh-materialized-view-node.ts * chore: export node in index.ts --------- Co-authored-by: Isak <[email protected]> Co-authored-by: Jonathan Wu <[email protected]>
Co-authored-by: Igal Klebanov <[email protected]>
* feat: empty where in plugin * test: add new tests * chore: remove unneccesary typeguards * fix: change to binary operator node * test: update tests to do both in and not in * test: for having * chore: rm test * test: nullable tests * chore: nit * chore: condense suite * chore: db config override * chore: extra console log * chore: empty arr plugin docs * HandleEmptyInListsPlugin initial commit. Co-authored-by: Austin Woon Quan <[email protected]> --------- Co-authored-by: Austin Woon <[email protected]> Co-authored-by: igalklebanov <[email protected]>
f1c5ac4
to
d2f0a27
Compare
Open in Stackblitz • kysely_koa_example
commit: |
b9b80bc
to
f75bc1e
Compare
e32bb7f
to
ca11632
Compare
"typesVersions": { | ||
"<4.6": { | ||
"*": [ | ||
"outdated-typescript.d.ts" | ||
] | ||
} | ||
}, | ||
"exports": { | ||
".": { | ||
"import": "./dist/esm/index.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.
According to the TS documentation, the exports
key takes precedence over the typesVersions
key.
This change was technically made in TS 4.9, but one of the maintainers indicated here that non-exports
keys cannot contribute to the resolution when an exports
key is present, so this should still be applicable.
"typesVersions": { | |
"<4.6": { | |
"*": [ | |
"outdated-typescript.d.ts" | |
] | |
} | |
}, | |
"exports": { | |
".": { | |
"import": "./dist/esm/index.js", | |
"exports": { | |
".": { | |
"types@<4.6": "outdated-typescript.d.ts", | |
"types": "./dist/esm/index.d.ts", | |
"import": "./dist/esm/index.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.
Hey 👋
You're commenting on the wrong PR.
Anyway, this still works for the version being targeted. If the cutoff eventually happens on a version where typesVersions
is no good anymore, we'll change that.
Maybe we could add <4.6
also to exports
in case the IDE picks up a newer TS version, but the project uses an older dev dependency.
Closes #1162