bunmicro 0.9.0 → 0.9.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/CHANGELOG.md +3 -0
- package/README.md +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -77,6 +77,8 @@ npm install -g bun
|
|
|
77
77
|
|
|
78
78
|
# Run bunmicro(stable)
|
|
79
79
|
npx bunmicro
|
|
80
|
+
# npx bunmicro@latest to upgrade to new version
|
|
81
|
+
|
|
80
82
|
# npx bunmicro [options] [file1] [file2] ...
|
|
81
83
|
# alternative: bun bunmicro/src/index.js [options] [file1] [file2] ...
|
|
82
84
|
# if npx is not available, use npm x -- bunmicro
|
|
@@ -93,6 +95,8 @@ npx bunmicro
|
|
|
93
95
|
|
|
94
96
|
```sh
|
|
95
97
|
bun x bunmicro
|
|
98
|
+
# bun x bunmicro@latest to upgrade to new version
|
|
99
|
+
|
|
96
100
|
# bun x bunmicro [options] [file1] [file2] ...
|
|
97
101
|
# alternative: bun bunmicro/src/index.js [options] [file1] [file2] ...
|
|
98
102
|
|