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!: set min node to v16.18 and typescript to v4.8 #998

Merged
merged 3 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -101,7 +101,7 @@
"@types/chai-as-promised": "7.1.8",
"@types/mkdirp": "1.0.2",
"@types/mocha": "9.1.1",
"@types/node": "14.18.63",
"@types/node": "~16.18.86",
"@types/pg": "8.11.2",
"@types/proxyquire": "1.3.31",
"@types/sinon": "10.0.20",
Expand Down Expand Up @@ -132,7 +132,7 @@
"sinon-chai": "3.7.0",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"typescript": "4.5.4"
"typescript": "4.8.4"
},
"peerDependencies": {
"@types/pg": ">=6.0.0 <9.0.0",
Expand All @@ -145,6 +145,6 @@
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=12.20.0"
"node": ">=16.18.0"
}
}
92 changes: 46 additions & 46 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/operations/views.ts
Expand Up @@ -25,6 +25,7 @@ const viewOptionStr =
) =>
(key: TKey) => {
const value = options[key] === true ? '' : ` = ${options[key]}`;
// @ts-expect-error: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. ts(2731)
return `${key}${value}`;
};

Expand Down
1 change: 1 addition & 0 deletions src/operations/viewsMaterialized.ts
Expand Up @@ -32,6 +32,7 @@ const storageParameterStr =
(key: TKey) => {
const value =
storageParameters[key] === true ? '' : ` = ${storageParameters[key]}`;
// @ts-expect-error: Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'. ts(2731)
return `${key}${value}`;
};

Expand Down