starlight-package-managers 0.10.0 → 0.11.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +1 -1
  3. package/pkg.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # starlight-package-managers
2
2
 
3
+ ## 0.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#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`.
8
+
3
9
  ## 0.10.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starlight-package-managers",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
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)",
package/pkg.ts CHANGED
@@ -36,6 +36,7 @@ const commands: Commands = {
36
36
  },
37
37
  bun: {
38
38
  add: 'bun add',
39
+ create: 'bun create',
39
40
  devOption: '-d',
40
41
  dlx: 'bunx',
41
42
  exec: 'bunx',