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 +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
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(`
|
|
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
|
-
|
|
1898
|
+
beaver-build - Interactive CLI for scaffolding modern web projects
|
|
1899
1899
|
|
|
1900
1900
|
Usage:
|
|
1901
1901
|
beaver [options]
|