Skip to content

Commit

Permalink
deps(build): Update to typescript 5.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
grant0417 committed Jun 24, 2024
1 parent 9bae090 commit 614c317
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "~5.4.5"
"typescript": "~5.5.2"
},
"dependencies": {
"@fig/autocomplete-generators": "^2.4.0",
Expand Down
95 changes: 48 additions & 47 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/coda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const formulaNames: Fig.Generator = {
}
return output.split("\n").map((formulaName) => {
return {
name: formulaName.replaceAll(/['"]/g, "").trim(),
name: formulaName.replace(/['"]/g, "").trim(),
description: `Execute ${formulaName}`,
};
});
Expand Down
2 changes: 1 addition & 1 deletion src/xcodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const processXcodeList = (out: string, tokens: string[]) =>
: tokens.includes("select") || tokens.includes("uninstall")
? "🔨"
: "⬇️",
description: line.slice(line.indexOf("(")).replaceAll(/[\(\)]/g, ""),
description: line.slice(line.indexOf("(")).replace(/[\(\)]/g, ""),
}));

const allXcodes: Fig.Generator = {
Expand Down
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"compilerOptions": {
"jsx": "react-jsx",
"moduleResolution": "node",
"outDir": "./build",
"target": "ES6",
"target": "ES2018",
"module": "ESNext",
"lib": [
"ESNext",
"ES2018",
"DOM"
],
"noImplicitAny": false,
Expand Down

0 comments on commit 614c317

Please sign in to comment.