@stacksjs/cli 0.70.23 โ 0.70.26
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 +2 -2
- package/dist/index.js +884 -23228
- package/dist/src/actions/index.d.ts +1 -0
- package/dist/src/actions/install.d.ts +24 -0
- package/dist/src/cli.d.ts +14 -0
- package/dist/src/exec.d.ts +40 -0
- package/dist/src/helpers.d.ts +14 -0
- package/dist/src/index.d.ts +10 -0
- package/dist/{parse.d.ts โ src/parse.d.ts} +14 -9
- package/dist/src/prompts.d.ts +44 -0
- package/dist/src/run.d.ts +63 -0
- package/dist/src/signals.d.ts +29 -0
- package/dist/src/spinner.d.ts +17 -0
- package/dist/src/utils.d.ts +137 -0
- package/package.json +23 -22
- package/dist/app.d.ts +0 -52
- package/dist/cli.d.ts +0 -15
- package/dist/command.d.ts +0 -52
- package/dist/console.d.ts +0 -17
- package/dist/exec.d.ts +0 -5
- package/dist/helpers.d.ts +0 -4
- package/dist/index.d.ts +0 -10
- package/dist/install.d.ts +0 -11
- package/dist/run.d.ts +0 -6
- package/dist/spinner.d.ts +0 -1
- package/dist/utils.d.ts +0 -65
package/README.md
CHANGED
|
@@ -235,7 +235,7 @@ await p.tasks([
|
|
|
235
235
|
|
|
236
236
|
To view a more detailed example, check out [Buddy](../../buddy/).
|
|
237
237
|
|
|
238
|
-
|
|
238
|
+
*You may also use any of the following CLI utilities:*
|
|
239
239
|
|
|
240
240
|
```js
|
|
241
241
|
import {
|
|
@@ -286,7 +286,7 @@ import {
|
|
|
286
286
|
log.info(`hello ${bold(italic('world'))}`)
|
|
287
287
|
```
|
|
288
288
|
|
|
289
|
-
To view the full documentation, please visit [https://stacksjs.
|
|
289
|
+
To view the full documentation, please visit [<https://stacksjs.com/cl>i](https://stacksjs.com/cli).
|
|
290
290
|
|
|
291
291
|
## ๐งช Testing
|
|
292
292
|
|