Skip to content
Merged

dev #28

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ packages/docs/*/knowledge/
packages/docs/*/public/exports
.wireit
.lint-cache
.pnpm-store

###############################################################################
# Framework-specific outputs
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@
"resolutions": {
"eslint": "catalog:",
"lodash": "4.17.23",
"playwright": "1.58.2",
"typescript": "5.9.3"
"playwright": "1.58.2"
},
"packageManager": "pnpm@11.5.0+sha512.dbfcc4f81cf48597afd4bc391ffdf12c11f1a9fb83a395bfa6b0a2d9cc2fd8ffebafdb1ccbd529632153f793904c2615b7f09fe1a345473fd1c35845172a8eb1"
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b"
}
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @qualcomm-ui/cli Changelog

## 1.1.0

Jun 23rd, 2026

### Features

- [lint-changed]: add script for linting changed files ([1131bb3](https://github.com/qualcomm/qualcomm-ui-utils/commit/1131bb3))

### Build System

- support TypeScript 6.0 ([fccb8c7](https://github.com/qualcomm/qualcomm-ui-utils/commit/fccb8c7))

## 1.0.8

Jun 11th, 2026
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function main(argv: string[]) {
"process.env.BUILD_MODE": JSON.stringify(BUILD_MODE),
},
entryPoints: ["./src/cli.ts"],
external: ["typescript"],
external: ["typescript", "@manypkg/get-packages"],
format: "cjs",
loader: {
".node": "copy",
Expand Down
6 changes: 5 additions & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qualcomm-ui/cli",
"version": "1.0.8",
"version": "1.1.0",
"description": "Dev utils and scripts in a convenient CLI",
"license": "BSD-3-Clause-Clear",
"author": "Ryan Bower",
Expand Down Expand Up @@ -32,11 +32,15 @@
},
"devDependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@manypkg/get-packages": "^3.1.0",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"commander": "^14.0.3",
"dayjs": "^1.11.19",
"esbuild": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"@manypkg/get-packages": ">=3.1.0"
}
}
5 changes: 4 additions & 1 deletion packages/cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@

import {program} from "@commander-js/extra-typings"

import {addPublishAngularCommands, addPublishCommands} from "./modules/index.js"
import {addLintChangedCommand} from "./modules/lint-changed.js"
import {addPublishAngularCommands} from "./modules/publish-angular.js"
import {addPublishCommands} from "./modules/publish.js"

program.allowUnknownOption(false)

addPublishCommands()
addPublishAngularCommands()
addLintChangedCommand()

program.parse(process.argv)
2 changes: 0 additions & 2 deletions packages/cli/src/modules/index.ts

This file was deleted.

Loading
Loading