beaver-build 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -16,7 +16,7 @@ An interactive CLI tool for scaffolding modern web projects. Select your project
16
16
  **Option 1: Install globally** (recommended for frequent use)
17
17
 
18
18
  ```bash
19
- npm install -g bver-build
19
+ npm install -g beaver-build
20
20
  beaver
21
21
  ```
22
22
 
package/dist/index.js CHANGED
@@ -1890,12 +1890,12 @@ var getVersion = () => {
1890
1890
  var main = async () => {
1891
1891
  const args = process.argv.slice(2);
1892
1892
  if (args.includes("--version") || args.includes("-v")) {
1893
- console.log(`bver-build v${getVersion()}`);
1893
+ console.log(`beaver-build v${getVersion()}`);
1894
1894
  process.exit(0);
1895
1895
  }
1896
1896
  if (args.includes("--help") || args.includes("-h")) {
1897
1897
  console.log(`
1898
- bver-build - Interactive CLI for scaffolding modern web projects
1898
+ beaver-build - Interactive CLI for scaffolding modern web projects
1899
1899
 
1900
1900
  Usage:
1901
1901
  beaver [options]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beaver-build",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Interactive CLI tool for scaffolding modern web projects with production-ready configurations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",