-
Notifications
You must be signed in to change notification settings - Fork 0
Fix npx support #2036
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
Fix npx support #2036
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| #!/usr/bin/env node | ||
| // eslint-disable-next-line import/export | ||
| export * from './main.js'; | ||
| //# sourceMappingURL=cli.js.map | ||
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -106,4 +106,3 @@ catch (e) { | |
| logger.error(e); | ||
| process.exit(1); | ||
| } | ||
| //# sourceMappingURL=main.js.map | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| {"name":"appstore-connect-jwt-generator-cli","version":"1.0.7","author":"poad","license":"MIT","private":false,"homepage":"https://github.com/poad/appstore-connect-jwt-generator-cli#readme","bin":{"jwt-gen":"bin/index.js"},"main":"bin/cli.js","type":"module","repository":{"type":"git","url":"git+https://github.com/poad/appstore-connect-jwt-generator-cli.git"},"keywords":["jwt","appstore","cli"],"scripts":{"test":"vitest run --silent=false --coverage --passWithNoTests","clean":"tsc --build --clean","compile":"tsc","watch":"tsc --watch","build":"pnpm clean && pnpm compile","dev":"tsx src/main.ts","package":"ncc build --source-map --license licenses.txt -m -q -o bin","lint":"eslint","lint-fix":"eslint --fix","all":"pnpm build && pnpm package && pnpm lint && pnpm test"},"devDependencies":{"@eslint/compat":"^1.3.2","@eslint/js":"^9.35.0","@stylistic/eslint-plugin":"^5.3.1","@types/node":"^24.3.1","@vercel/ncc":"^0.38.3","@vitest/coverage-v8":"^3.2.4","eslint":"^9.35.0","eslint-config-prettier":"^10.1.8","eslint-import-resolver-typescript":"^4.4.4","eslint-plugin-flowtype":"^8.0.3","eslint-plugin-import":"^2.32.0","eslint-plugin-jest":"^29.0.1","eslint-plugin-prettier":"^5.5.4","eslint-plugin-promise":"^7.2.1","prettier":"^3.6.2","tsx":"^4.20.5","typescript":"^5.9.2","typescript-eslint":"^8.43.0","vite":"^7.1.5","vite-tsconfig-paths":"^5.1.4","vitest":"^3.2.4"},"dependencies":{"appstore-connect-jwt-generator-core":"^2.0.1","arg":"^5.0.2","chalk":"^5.6.2","chalk-template":"^1.1.2","log4js":"^6.9.1"},"files":["package.json","bin/*"],"exports":{".":{"node":"./bin/index.js","default":"./bin/index.js"}},"engines":{"npm":"use pnpm please!","yarn":"use pnpm please!","pnpm":">=8.7.1","node":">=22.0.0"},"publishConfig":{"registry":"https://registry.npmjs.org/","access":"public"},"packageManager":"[email protected]"} | ||
| {"name":"appstore-connect-jwt-generator-cli","version":"1.0.7","author":"poad","license":"MIT","private":false,"homepage":"https://github.com/poad/appstore-connect-jwt-generator-cli#readme","main":"bin/cli.js","bin":{"jwt-gen":"./bin/cli.js","appstore-jwt-gen":"./bin/cli.js"},"type":"module","repository":{"type":"git","url":"git+https://github.com/poad/appstore-connect-jwt-generator-cli.git"},"keywords":["appstore","jwt","api","cli"],"preferGlobal":false,"scripts":{"test":"vitest run --silent=false --coverage --passWithNoTests","prebuild":"tsc --build --clean","watch":"tsc --watch","build":"tsc","dev":"tsx src/main.ts","package":"ncc build --license licenses.txt -m -q -o bin && chmod +x bin/cli.js","lint":"eslint","lint-fix":"eslint --fix","all":"pnpm build && pnpm package && pnpm lint && pnpm test"},"devDependencies":{"@eslint/compat":"^1.3.2","@eslint/js":"^9.35.0","@stylistic/eslint-plugin":"^5.3.1","@types/node":"^24.3.1","@vercel/ncc":"^0.38.3","@vitest/coverage-v8":"^3.2.4","eslint":"^9.35.0","eslint-config-prettier":"^10.1.8","eslint-import-resolver-typescript":"^4.4.4","eslint-plugin-flowtype":"^8.0.3","eslint-plugin-import":"^2.32.0","eslint-plugin-jest":"^29.0.1","eslint-plugin-prettier":"^5.5.4","eslint-plugin-promise":"^7.2.1","prettier":"^3.6.2","tsx":"^4.20.5","typescript":"^5.9.2","typescript-eslint":"^8.43.0","vite":"^7.1.5","vite-tsconfig-paths":"^5.1.4","vitest":"^3.2.4"},"dependencies":{"appstore-connect-jwt-generator-core":"^2.0.2","arg":"^5.0.2","chalk":"^5.6.2","chalk-template":"^1.1.2","log4js":"^6.9.1"},"files":["package.json","bin/*","README.md"],"exports":{".":{"node":"./bin/index.js","default":"./bin/index.js"}},"engines":{"npm":"use pnpm please!","yarn":"use pnpm please!","node":">=22.0.0"},"publishConfig":{"registry":"https://registry.npmjs.org/","access":"public"},"packageManager":"[email protected]"} |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
| "outDir": "./bin", | ||
| "declaration": false, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ソースマップの無効化について:
|
||
| "declarationMap": false, | ||
| "sourceMap": true, | ||
| "sourceMap": false, | ||
| "strict": true, | ||
| "noImplicitAny": true, | ||
| "esModuleInterop": true, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.