Skip to content

Commit 4c7e34c

Browse files
committed
Use placeholder namespace
1 parent 7097673 commit 4c7e34c

File tree

8 files changed

+12
-14
lines changed

8 files changed

+12
-14
lines changed

examples/basic-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"plugins": "hwp plugins"
77
},
88
"dependencies": {
9-
"@hwp/cli": "workspace:*"
9+
"@placeholder/cli": "workspace:*"
1010
}
1111
}

packages/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ NPM packages for the Headless WordPress Toolkit. All packages use vanilla ES Mod
44

55
## Packages
66

7-
- `@hwp/cli`
7+
- `@placeholder/cli`

packages/cli/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @hwp/cli
1+
# @placeholder/cli
22

33
Command-line interface for the Headless WordPress Toolkit.
44

@@ -13,10 +13,10 @@ Command-line interface for the Headless WordPress Toolkit.
1313

1414
```bash
1515
# Check WordPress plugin status
16-
pnpm dlx @hwp/cli status
16+
pnpm dlx @placeholder/cli status
1717

1818
# List installed HWP plugins
19-
pnpm dlx @hwp/cli plugins
19+
pnpm dlx @placeholder/cli plugins
2020
```
2121

2222
## Development

packages/cli/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@hwp/cli",
2+
"name": "@placeholder/cli",
33
"version": "0.0.1",
44
"description": "Headless WordPress Toolkit CLI",
55
"type": "module",
@@ -8,7 +8,6 @@
88
"hwp": "./bin/hwp.js"
99
},
1010
"scripts": {
11-
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
1211
"dev": "wp-env start",
1312
"stop": "wp-env stop"
1413
},
@@ -18,7 +17,6 @@
1817
"dotenv": "^16.4.1"
1918
},
2019
"devDependencies": {
21-
"@wordpress/env": "^8.13.0",
22-
"jest": "^29.7.0"
20+
"@wordpress/env": "^8.13.0"
2321
}
2422
}

plugins/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ WordPress plugins for the Headless WordPress Toolkit. Each plugin is paired with
55
## Plugins
66

77
- `hwp-cli`: WordPress plugin for CLI operations and status endpoints
8-
- NPM Package: `@hwp/cli`
8+
- NPM Package: `@placeholder/cli`
99
- Features: REST API endpoints, admin interface

plugins/hwp-cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ WordPress plugin component of the Headless WordPress Toolkit CLI.
77
- REST API endpoints for CLI operations
88
- WordPress VIP coding standards
99
- Admin interface integration
10-
- Pairs with `@hwp/cli` NPM package
10+
- Pairs with `@placeholder/cli` NPM package

plugins/hwp-cli/hwp-cli.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Domain Path: /languages
1212
* Requires PHP: 7.4
1313
* Requires at least: 6.0
14-
* NPM Package: @hwp/cli
14+
* NPM Package: @placeholder/cli
1515
* Repository: https://github.com/hwp/cli
1616
*
1717
* @package HWP\CLI

scripts/dev.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ PACKAGE=${1:-cli}
77
bash ./scripts/clean.sh
88

99
# Run the dev command for the specified package
10-
echo "Starting development environment for @hwp/$PACKAGE..."
11-
pnpm --filter "@hwp/$PACKAGE" dev
10+
echo "Starting development environment for @placeholder/$PACKAGE..."
11+
pnpm --filter "@placeholder/$PACKAGE" dev

0 commit comments

Comments
 (0)