@sapphire/plugin-subcommands 3.2.1-next.4ab92be.0 → 3.2.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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ # [@sapphire/plugin-subcommands@3.2.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-subcommands@3.2.0...@sapphire/plugin-subcommands@3.2.1) - (2022-09-02)
6
+
7
+ ## 🐛 Bug Fixes
8
+
9
+ - Subcommands script (#346) ([4f5f06a](https://github.com/sapphiredev/plugins/commit/4f5f06a3b7df35c18d71d196bcda5abdb2b499b7))
10
+ - **subcommands:** Fixed mismatch in `*SubcommandMissingHandler` built in errors (#345) ([4ab92be](https://github.com/sapphiredev/plugins/commit/4ab92bef58fbe81e3874740834ce7f592e7bde1e))
11
+
5
12
  # [@sapphire/plugin-subcommands@3.2.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-subcommands@3.1.1...@sapphire/plugin-subcommands@3.2.0) - (2022-08-29)
6
13
 
7
14
  ## 🚀 Features
@@ -0,0 +1,4 @@
1
+ import mod from "./register.js";
2
+
3
+ export default mod;
4
+ export const SubcommandsPlugin = mod.SubcommandsPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/plugin-subcommands",
3
- "version": "3.2.1-next.4ab92be.0",
3
+ "version": "3.2.1",
4
4
  "description": "Plugin for @sapphire/framework that adds support for subcommands.",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -27,7 +27,8 @@
27
27
  "homepage": "https://github.com/sapphiredev/plugins/tree/main/packages/subcommands",
28
28
  "scripts": {
29
29
  "lint": "eslint src --ext ts --fix",
30
- "build": "tsc -b src && yarn esm:default",
30
+ "build": "tsc -b src && yarn esm:register && yarn esm:default",
31
+ "esm:register": "gen-esm-wrapper dist/register.js dist/register.mjs",
31
32
  "esm:default": "gen-esm-wrapper dist/index.js dist/index.mjs",
32
33
  "docs": "typedoc-json-parser",
33
34
  "prepack": "yarn build",
@@ -73,8 +74,8 @@
73
74
  "devDependencies": {
74
75
  "@favware/cliff-jumper": "^1.8.7",
75
76
  "gen-esm-wrapper": "^1.1.3",
76
- "typedoc": "^0.23.11",
77
- "typedoc-json-parser": "^2.3.2",
77
+ "typedoc": "^0.23.13",
78
+ "typedoc-json-parser": "^3.0.0",
78
79
  "typescript": "^4.8.2"
79
80
  }
80
81
  }