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

feat: "pack" command #29

Merged
merged 11 commits into from
Feb 28, 2024
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
### ✨ New

- Add `streamdeck validate` command for validating Stream Deck plugins.
- Add `-v, --version` option to display current version of CLI.
- Add `-v` option to display current version of CLI.
- Add "Open in VSCode" prompt, as part of creation wizard, for macOS.

### 🐞 Bug Fixes
Expand Down
89 changes: 51 additions & 38 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"@types/tar": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@zip.js/zip.js": "^2.7.34",
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
Expand All @@ -67,6 +68,7 @@
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^5.0.0",
"find-process": "^1.4.7",
"ignore": "^5.3.1",
"inquirer": "^9.2.11",
"is-interactive": "^2.0.0",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import path from "node:path";

import { command } from "../common/command";
import { createCopier } from "../common/file-copier";
import { invalidCharacters, isExecutable, isSafeBaseName, relative } from "../common/path";
import { invalidCharacters, isExecutable, isSafeBaseName, relative } from "../system/path";
import { run } from "../common/runner";
import { StdOut } from "../common/stdout";
import { getConfig } from "../config";
Expand Down
1 change: 1 addition & 0 deletions src/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export * as config from "./config";
export { create } from "./create";
export { setDeveloperMode } from "./dev";
export { link } from "./link";
export { pack } from "./pack";
export { restart } from "./restart";
export { stop } from "./stop";
export { validate } from "./validate";
Loading