@holistics/cli-core 0.5.9 → 0.6.2
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 +11 -0
- package/bin/holistics.js +10 -0
- package/dist/commands.js +981 -454
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -19,3 +19,14 @@ This is possible because we already compiled the code into a single `commands.js
|
|
|
19
19
|
- Run `bun_build.sh`
|
|
20
20
|
|
|
21
21
|
If `bun` is not installed at the local, the build will be skipped.
|
|
22
|
+
|
|
23
|
+
## Quick run
|
|
24
|
+
For quickly testing the build file, can use the below command to run
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
# build file
|
|
28
|
+
./bun_build.sh
|
|
29
|
+
|
|
30
|
+
# run the build
|
|
31
|
+
node bin/holistics.js
|
|
32
|
+
```
|
package/bin/holistics.js
ADDED