@zeroheight/adoption-cli 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/cli.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Release notes
|
|
2
2
|
|
|
3
|
+
## [0.4.4](https://www.npmjs.com/package/@zeroheight/adoption-cli/v/0.4.4) - 17th September 2024
|
|
4
|
+
|
|
5
|
+
- Bug fixes
|
|
6
|
+
|
|
3
7
|
## [0.4.3](https://www.npmjs.com/package/@zeroheight/adoption-cli/v/0.4.3) - 17th September 2024
|
|
4
8
|
|
|
5
9
|
- Update Ink, ink-link, ink-text-input, ink-select-input dependencies
|
package/dist/cli.js
CHANGED
|
@@ -5,17 +5,17 @@ import { render } from "ink-render-string";
|
|
|
5
5
|
import HelpInfo from "./components/help-info.js";
|
|
6
6
|
import { analyzeCommand } from "./commands/analyze.js";
|
|
7
7
|
import { authCommand } from "./commands/auth.js";
|
|
8
|
-
import { trackPackageCommand } from "./commands/track-package.js";
|
|
8
|
+
// import { trackPackageCommand } from "./commands/track-package.js";
|
|
9
9
|
const program = new Command();
|
|
10
10
|
const { output, cleanup } = render(React.createElement(HelpInfo, null));
|
|
11
11
|
program
|
|
12
12
|
.name("zh-adoption")
|
|
13
13
|
.description("CLI for measuring design system usage usage in your products")
|
|
14
|
-
.version("0.4.
|
|
14
|
+
.version("0.4.4")
|
|
15
15
|
.addHelpText("before", output)
|
|
16
16
|
.addCommand(analyzeCommand())
|
|
17
|
-
.addCommand(authCommand())
|
|
18
|
-
|
|
17
|
+
.addCommand(authCommand());
|
|
18
|
+
// .addCommand(trackPackageCommand());
|
|
19
19
|
cleanup();
|
|
20
20
|
// Only start parsing if run as CLI, don't start parsing during testing
|
|
21
21
|
if (process.env["NODE_ENV"] !== "test") {
|