starlight-package-managers 0.10.0 → 0.11.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 +12 -0
- package/package.json +2 -3
- package/pkg.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# starlight-package-managers
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#37](https://github.com/HiDeoo/starlight-package-managers/pull/37) [`76e2efc`](https://github.com/HiDeoo/starlight-package-managers/commit/76e2efc631bff54985ed29b5144d3ae027cc71be) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Setups trusted publishing using OpenID Connect (OIDC) authentication — no code changes.
|
|
8
|
+
|
|
9
|
+
## 0.11.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#35](https://github.com/HiDeoo/starlight-package-managers/pull/35) [`5e0b7f7`](https://github.com/HiDeoo/starlight-package-managers/commit/5e0b7f7c6a9eab7b1ff4d4eaf6927d90c2a33d7d) Thanks [@notpushkin](https://github.com/notpushkin)! - Adds support for the `create` command type with `bun`.
|
|
14
|
+
|
|
3
15
|
## 0.10.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starlight-package-managers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Quickly display npm related commands for multiple package managers in your Starlight documentation site.",
|
|
6
6
|
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"packageManager": "pnpm@8.6.10",
|
|
23
23
|
"publishConfig": {
|
|
24
|
-
"access": "public"
|
|
25
|
-
"provenance": true
|
|
24
|
+
"access": "public"
|
|
26
25
|
},
|
|
27
26
|
"sideEffects": false,
|
|
28
27
|
"keywords": [
|