Skip to content

Commit

Permalink
Bump typescript from 4.2.4 to 4.3.2 (directus#5967)
Browse files Browse the repository at this point in the history
* Bump typescript from 4.2.4 to 4.3.2

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.2.4 to 4.3.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v4.2.4...v4.3.2)

Signed-off-by: dependabot[bot] <support@github.com>

* Fix typing quirk

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
  • Loading branch information
dependabot[bot] and rijkvanzanten authored Jun 1, 2021
1 parent a72ef33 commit b1f1e09
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,6 @@
"copyfiles": "^2.4.0",
"cross-env": "^7.0.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
"typescript": "^4.3.2"
}
}
48 changes: 24 additions & 24 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"rimraf": "^3.0.2",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.2.2"
"typescript": "^4.3.2"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd"
}
4 changes: 2 additions & 2 deletions packages/cli/src/core/output/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export class UIBuilder implements IUIComposer {
reflowText: true,
showSectionPrefix: false,
tab: this.indentSize,
codespan: (text) => chalk.reset.bgGray.white(`${text}`),
blockquote: (text) =>
codespan: (text: string) => chalk.reset.bgGray.white(`${text}`),
blockquote: (text: string) =>
palette.quote(
stripAnsi(text)
.split('\n')
Expand Down
2 changes: 1 addition & 1 deletion packages/drive-azure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"jest": "^27.0.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.2",
"typescript": "^4.2.3"
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/drive-gcs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"jest": "^27.0.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.2",
"typescript": "^4.2.3"
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/drive-s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"jest": "^27.0.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.2",
"typescript": "^4.2.3"
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/drive/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"jest": "^27.0.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.2",
"typescript": "^4.2.3"
"typescript": "^4.3.2"
}
}
2 changes: 1 addition & 1 deletion packages/format-title/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.0.5"
"typescript": "^4.3.2"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd"
}
2 changes: 1 addition & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"homepage": "https://github.com/directus/directus#readme",
"devDependencies": {
"npm-watch": "^0.9.0",
"typescript": "^4.0.5"
"typescript": "^4.3.2"
},
"dependencies": {
"knex-schema-inspector": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.2.2"
"typescript": "^4.3.2"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd"
}

0 comments on commit b1f1e09

Please sign in to comment.