Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cli tool inquirer.js #104

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,6 @@ typings/
dist/

.vscode/
.vscode/**

bun.lock
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@librescore/sf3": "^0.8.0",
"detect-node": "^2.1.0",
"i18next": "^23.16.8",
"inquirer": "^8.2.6",
"inquirer": "^12.4.1",
"md5": "^2.3.0",
"node-fetch": "^2.7.0",
"ora": "^5.4.1",
Expand All @@ -46,23 +46,22 @@
"yargs": "^17.7.2"
},
"devDependencies": {
"@crokita/rollup-plugin-node-builtins": "^2.1.3",
"@rollup/plugin-json": "^6.1.0",
"@types/file-saver": "^2.0.7",
"@types/inquirer": "^9.0.7",
"@types/md5": "^2.3.5",
"@types/pdfkit": "^0.13.8",
"@types/yargs": "^17.0.33",
"pdfkit": "git+https://github.com/LibreScore/pdfkit.git",
"rollup": "^4.29.1",
"rollup": "^4.34.2",
"@rollup/plugin-commonjs": "^28.0.2",
"rollup-plugin-node-globals": "^1.4.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript": "^1.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"svg-to-pdfkit": "^0.1.8",
"tslib": "^2.8.1",
"typescript": "^4.7.2"
"typescript": "^5.7.3"
},
"overrides": {
"whatwg-url": "14.x"
Expand Down
9 changes: 5 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import typescript from "rollup-plugin-typescript";
import typescript from "@rollup/plugin-typescript";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import builtins from "@crokita/rollup-plugin-node-builtins";
import builtins from "rollup-plugin-polyfill-node";
import nodeGlobals from "rollup-plugin-node-globals";
import json from "@rollup/plugin-json";
import { string } from "rollup-plugin-string";
Expand Down Expand Up @@ -33,7 +33,8 @@ const basePlugins = [
extensions: [".js", ".ts"],
}),
commonjs({
extensions: [".js", ".ts"],
include: "node_modules/**",
transformMixedEsModules: true,
}),
json(),
string({
Expand Down Expand Up @@ -95,7 +96,7 @@ export default [
input: "src/cli.ts",
output: {
file: "dist/cli.js",
format: "cjs",
format: "es",
banner: "#!/usr/bin/env node",
sourcemap: false,
},
Expand Down
Loading