phewsh 0.15.66 → 0.15.67
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/bin/phewsh.js +3 -0
- package/package.json +1 -1
package/bin/phewsh.js
CHANGED
|
@@ -77,6 +77,9 @@ function showBrand() {
|
|
|
77
77
|
const COMMANDS = {
|
|
78
78
|
session: () => require('../commands/session'),
|
|
79
79
|
intent: () => require('../commands/intent'),
|
|
80
|
+
// `phewsh init` = `phewsh intent --init` — the universal spelling (git init,
|
|
81
|
+
// npm init) and what phewsh.com/cli tells new users to run.
|
|
82
|
+
init: () => { process.argv.splice(3, 0, '--init'); return require('../commands/intent'); },
|
|
80
83
|
clarify: () => require('../commands/clarify').run(),
|
|
81
84
|
push: () => require('../commands/push'),
|
|
82
85
|
pull: () => require('../commands/pull'),
|