Skip to content

Commit 3787785

Browse files
Fix CI and twilio-run build (#486)
* Remove package @types/wrap-ansi * Declare module for wrap-ansi * Create kind-fireants-prove.md --------- Co-authored-by: Andre Lars <[email protected]>
1 parent b498f6f commit 3787785

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: .changeset/kind-fireants-prove.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
"@twilio-labs/serverless-api": patch
3+
"twilio-run": patch
4+
"create-twilio-function": patch
5+
"@twilio-labs/plugin-serverless": patch
6+
---
7+
8+
FRIDGE-9: Update toolkit to default to node18
9+
10+
Fix CI and twilio-run build

Diff for: packages/twilio-run/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
"@types/is-ci": "^2.0.0",
4242
"@types/qs": "^6.9.4",
4343
"@types/semver": "^7.3.6",
44-
"@types/wrap-ansi": "^8.0.1",
4544
"body-parser": "^1.18.3",
4645
"boxen": "^5.1.2",
4746
"chalk": "^2.4.2",

Diff for: packages/twilio-run/src/types.d.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
declare module 'wrap-ansi';
2+
13
declare module 'columnify' {
24
function columnify(obj: any, config: any): string;
35
export = columnify;
@@ -64,7 +66,7 @@ declare module 'chalk' {
6466
/**
6567
Return a new Chalk instance.
6668
*/
67-
new (options?: Options): Chalk;
69+
new(options?: Options): Chalk;
6870
}
6971

7072
/**

0 commit comments

Comments
 (0)