Skip to content

Commit 42fa709

Browse files
committed
fix: use @TMHS npm scope to match existing packages
Made-with: Cursor
1 parent 885fdf1 commit 42fa709

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
npm ci
5858
npm run build
5959
60-
- name: Publish @tmhsdigital/mobile-dev-tools
60+
- name: Publish @tmhs/mobile-dev-tools
6161
run: npm publish --access public --provenance
6262
env:
6363
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file.
1010
- **3 skills**: `mobile-project-setup`, `mobile-dev-environment`, `mobile-run-on-device`
1111
- **1 rule**: `mobile-secrets` (always-on credential detection)
1212
- **3 MCP tools**: `mobile_checkDevEnvironment`, `mobile_scaffoldProject`, `mobile_runOnDevice`
13-
- NPM package stub (`@tmhsdigital/mobile-dev-tools`) to reserve the name
13+
- NPM package stub (`@tmhs/mobile-dev-tools`) to reserve the name
1414
- CI workflows for pytest validation and MCP server build
1515
- Plugin structure validation (skill frontmatter, rule frontmatter, version consistency)
1616
- `CLAUDE.md` for Claude Code compatibility

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ Add to your Cursor MCP config (`.cursor/mcp.json`):
112112

113113
## NPM Package
114114

115-
The `@tmhsdigital/mobile-dev-tools` package provides shared utilities for mobile development. Currently a stub to reserve the name. Full functionality coming in future releases.
115+
The `@tmhs/mobile-dev-tools` package provides shared utilities for mobile development. Currently a stub to reserve the name. Full functionality coming in future releases.
116116

117117
```bash
118-
npm install -g @tmhsdigital/mobile-dev-tools
118+
npm install -g @tmhs/mobile-dev-tools
119119

120120
# CLI usage (coming soon)
121121
mobile-dev check-env

packages/mobile-dev-tools/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @tmhsdigital/mobile-dev-tools
1+
# @tmhs/mobile-dev-tools
22

33
CLI and utilities for mobile app development.
44

@@ -15,7 +15,7 @@ CLI and utilities for mobile app development.
1515
## Install
1616

1717
```bash
18-
npm install -g @tmhsdigital/mobile-dev-tools
18+
npm install -g @tmhs/mobile-dev-tools
1919
```
2020

2121
## Usage

packages/mobile-dev-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@tmhsdigital/mobile-dev-tools",
2+
"name": "@tmhs/mobile-dev-tools",
33
"version": "0.1.0",
44
"description": "CLI and utilities for mobile app development - environment checks, project scaffolding, store metadata validation.",
55
"type": "module",

packages/mobile-dev-tools/src/cli.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ if (command === "--version" || command === "-v") {
2828

2929
console.log(`${PACKAGE_NAME} v${VERSION}`);
3030
console.log(`Command "${command}" is not yet implemented. Coming in a future release.`);
31-
console.log("See https://github.com/TMHSDigital/Mobile-App-Developer-Tools for updates.");
31+
console.log("See https://github.com/TMHSDigital/Mobile-App-Developer-Tools for updates.")
32+
3233
process.exit(1);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const VERSION = "0.1.0";
22

3-
export const PACKAGE_NAME = "@tmhsdigital/mobile-dev-tools";
3+
export const PACKAGE_NAME = "@tmhs/mobile-dev-tools";

0 commit comments

Comments
 (0)