Skip to content
8 changes: 4 additions & 4 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"textlint-rule-preset-ja-technical-writing": "12.0.2",
"textlint-rule-terminology": "5.2.16",
"tsc": "2.0.4",
"tsx": "4.22.1",
"tsx": "4.22.3",
"typescript": "6.0.3"
},
"engines": {
Expand Down
5 changes: 4 additions & 1 deletion scripts/update_readme/update_readme/get_inputs_markdown.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { createRequire } from "module";
import { readFileSync } from "fs";
import * as yaml from "js-yaml";

const require = createRequire(import.meta.url);
const yaml = require("js-yaml") as typeof import("js-yaml");

export function script(): string {
const ymlFile = yaml.load(readFileSync("action.yml", "utf8")) as {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"moduleResolution": "bundler",
"types": ["node"],
"isolatedModules": true
}
},
"include": ["src/*.ts"]
}
Loading