Skip to content

Commit

Permalink
update ts4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lizthegrey committed May 1, 2022
1 parent cb47bc5 commit aab6274
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.9",
"ttypescript": "^1.5.13",
"typescript": "^4.6.4",
"typescript": "4.7.0-beta",
"url": "^0.11.0",
"vue": "^3.2.33",
"vue-eslint-parser": "^8.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/db/tnex/RenamedJoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class RenamedJoin<T extends object, U> {

if (prefix != this.tableAlias) {
throw new Error(
`Alias "${alias}" for column "${column}" must be` +
`Alias "${alias}" for column "${String(column)}" must be` +
` prefixed with "${this.tableAlias}".`
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/db/tnex/Tnex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class Tnex {
const val = row[col.prefixedName];
if (val === undefined) {
throw new Error(
`Column ${col.prefixedName} is undefined in row` +
`Column ${String(col.prefixedName)} is undefined in row` +
` ${inspect(row)}.`
);
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

"target": "es2020",
// Export Node-style modules since this is running on Node
"module": "ES2020",
"module": "es2020",
// We're running on Node, so use this strategy.
"moduleResolution": "node",

Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4859,7 +4859,7 @@ __metadata:
ts-jest: "npm:^27.1.4"
ts-loader: "npm:^9.2.9"
ttypescript: "npm:^1.5.13"
typescript: "npm:^4.6.4"
typescript: "npm:4.7.0-beta"
unbzip2-stream: "npm:^1.4.3"
underscore: "npm:^1.13.3"
url: "npm:^0.11.0"
Expand Down Expand Up @@ -11864,23 +11864,23 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:^4.6.4":
version: 4.6.4
resolution: "typescript@npm:4.6.4"
"typescript@npm:4.7.0-beta":
version: 4.7.0-beta
resolution: "typescript@npm:4.7.0-beta"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 6ed92bade9f1ba834733df9c932f42710381b4a3351369102ec99ad3bfa36b9bf2e57a639bff3ada2ab81dd3d97b1b14908601285fcbafed03a52da12adaaa98
checksum: cebef22a4aadc1e44110dbd156d88583e1eb658fe42be2a25c63aa945596c8e6ba26f7542d1cb64471a85d9cbb2b38cbb362592ff985ab077443f9574121914e
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A^4.6.4#optional!builtin<compat/typescript>":
version: 4.6.4
resolution: "typescript@patch:typescript@npm%3A4.6.4#optional!builtin<compat/typescript>::version=4.6.4&hash=7ad353"
"typescript@patch:typescript@npm%3A4.7.0-beta#optional!builtin<compat/typescript>":
version: 4.7.0-beta
resolution: "typescript@patch:typescript@npm%3A4.7.0-beta#optional!builtin<compat/typescript>::version=4.7.0-beta&hash=7ad353"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 0ee0e98dae9f55e67ce31749066b581698b563d2b6edc89430f5203ad770d51c43068ee00970df24b078c359dd6a8eb82da55a45b3e0ac2c61a0cf13f15c050a
checksum: 8c1dfb967ca11421585d0dbb92aea95a02b234fefecc6f65361bcbfd7fe44cce3657fc47eeca7572c1b83dc344fec53ffcf546f49836a28d40a311b231c36043
languageName: node
linkType: hard

Expand Down

0 comments on commit aab6274

Please sign in to comment.