magicbell-cli 0.2.1 → 0.3.0
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/.goreleaser.yaml +5 -0
- package/CHANGELOG.md +16 -0
- package/package.json +4 -5
package/.goreleaser.yaml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# magicbell-cli
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#7206](https://github.com/magicbell/magicbell/pull/7206) [`2e2d423`](https://github.com/magicbell/magicbell/commit/2e2d4232b35b62cb7fb46b7b76e075a9553cb34b) Thanks [@smeijer](https://github.com/smeijer)! - `magicbell --version` now prints the installed version
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#7203](https://github.com/magicbell/magicbell/pull/7203) [`7385add`](https://github.com/magicbell/magicbell/commit/7385add4f12c49c585e34895b30d4ec6c46af6fe) Thanks [@smeijer](https://github.com/smeijer)! - revert v2 change
|
|
12
|
+
|
|
13
|
+
## 0.2.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#7201](https://github.com/magicbell/magicbell/pull/7201) [`602947a`](https://github.com/magicbell/magicbell/commit/602947ac97e2de52d91463be5a94a53c4729a26a) Thanks [@smeijer](https://github.com/smeijer)! - remove pinst dependency
|
|
18
|
+
|
|
3
19
|
## 0.2.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "magicbell-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "MagicBell CLI",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"golang-npm": "^0.0.6"
|
|
7
|
-
"pinst": "^3.0.0"
|
|
6
|
+
"golang-npm": "^0.0.6"
|
|
8
7
|
},
|
|
9
8
|
"scripts": {
|
|
10
9
|
"postinstall": "golang-npm install",
|
|
11
10
|
"preuninstall": "golang-npm uninstall",
|
|
12
|
-
"prepack": "pinst --enable",
|
|
13
|
-
"postpack": "pinst --disable",
|
|
11
|
+
"prepack": "npx -y pinst --enable",
|
|
12
|
+
"postpack": "npx -y pinst --disable",
|
|
14
13
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
15
14
|
},
|
|
16
15
|
"author": "MagicBell",
|