@sapphire/plugin-pattern-commands 2.2.1-next.c82f65b.0 → 2.2.1-next.f20055d.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 +51 -0
  2. package/package.json +75 -69
  3. package/LICENSE.md +0 -24
package/CHANGELOG.md ADDED
@@ -0,0 +1,51 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ # [2.2.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-pattern-commands@2.1.1...@sapphire/plugin-pattern-commands@2.2.0) (2022-03-06)
6
+
7
+ ### Features
8
+
9
+ - allow module: NodeNext ([#251](https://github.com/sapphiredev/plugins/issues/251)) ([31bab09](https://github.com/sapphiredev/plugins/commit/31bab09834ebc1bc646e4a2849dbd24c65f08c0e))
10
+
11
+ ## [2.1.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-pattern-commands@2.1.0...@sapphire/plugin-pattern-commands@2.1.1) (2022-01-23)
12
+
13
+ ### Bug Fixes
14
+
15
+ - **pattern-commands:** ensure duration isn't destructured when not available ([8f16d02](https://github.com/sapphiredev/plugins/commit/8f16d02053c2d7338ce644cf23cd9446df1d9cc1))
16
+
17
+ # [2.1.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-pattern-commands@2.0.0...@sapphire/plugin-pattern-commands@2.1.0) (2022-01-13)
18
+
19
+ ### Bug Fixes
20
+
21
+ - **scheduled-tasks and pattern-commands:** Add params to event typedocs ([#222](https://github.com/sapphiredev/plugins/issues/222)) ([e18509f](https://github.com/sapphiredev/plugins/commit/e18509f2df3d3b1fd146e21c6dc199170d671b15))
22
+
23
+ ### Features
24
+
25
+ - **pattern-commands:** Add duration to `CommandSuccess` event ([#225](https://github.com/sapphiredev/plugins/issues/225)) ([8a58c46](https://github.com/sapphiredev/plugins/commit/8a58c462f3d198febab8a330ee5fac26911a0085))
26
+
27
+ # [2.0.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-pattern-commands@1.0.2...@sapphire/plugin-pattern-commands@2.0.0) (2022-01-10)
28
+
29
+ ### Features
30
+
31
+ - add HMR plugin ([#209](https://github.com/sapphiredev/plugins/issues/209)) ([4a18bb1](https://github.com/sapphiredev/plugins/commit/4a18bb1377a8d506fddc5bb991430503902d393b))
32
+ - **pattern-commands:** add duration to finished and error events ([#219](https://github.com/sapphiredev/plugins/issues/219)) ([654c32e](https://github.com/sapphiredev/plugins/commit/654c32e17ab55a60b4593e4825e02feab10ee803))
33
+ - **pattern-commands:** Option for full match of command name ([#220](https://github.com/sapphiredev/plugins/issues/220)) ([832decb](https://github.com/sapphiredev/plugins/commit/832decb947c500c3299212e4d352fa10940dba4a))
34
+
35
+ ## [1.0.2](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-pattern-commands@1.0.1...@sapphire/plugin-pattern-commands@1.0.2) (2021-12-30)
36
+
37
+ ### Bug Fixes
38
+
39
+ - **pattern-commands:** resolve listener triggering twice in rare cases ([#203](https://github.com/sapphiredev/plugins/issues/203)) ([bf1ede1](https://github.com/sapphiredev/plugins/commit/bf1ede186bd85e6f135525ea5fdee8da08a94cf0))
40
+
41
+ ## [1.0.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-pattern-commands@1.0.0...@sapphire/plugin-pattern-commands@1.0.1) (2021-12-29)
42
+
43
+ ### Bug Fixes
44
+
45
+ - **pattern-commands:** fixed missing module augmentation for store ([e7d862b](https://github.com/sapphiredev/plugins/commit/e7d862b8d67d89caed5fec240f7dfc7746130210))
46
+
47
+ # 1.0.0 (2021-12-29)
48
+
49
+ ### Features
50
+
51
+ - add pattern commands plugin ([#192](https://github.com/sapphiredev/plugins/issues/192)) ([0db56ac](https://github.com/sapphiredev/plugins/commit/0db56ac5391b6959ff6f2627623ae8ae6eef2541))
package/package.json CHANGED
@@ -1,70 +1,76 @@
1
1
  {
2
- "name": "@sapphire/plugin-pattern-commands",
3
- "version": "2.2.1-next.c82f65b.0",
4
- "description": "Plugin for @sapphire/framework that adds support for pattern commands.",
5
- "author": "@sapphire",
6
- "license": "MIT",
7
- "main": "dist/index.js",
8
- "module": "dist/index.mjs",
9
- "types": "dist/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "import": "./dist/index.mjs",
13
- "require": "./dist/index.js",
14
- "types": "./dist/index.d.ts"
15
- },
16
- "./register": {
17
- "import": "./register.mjs",
18
- "require": "./register.js",
19
- "types": "./register.d.ts"
20
- }
21
- },
22
- "sideEffects": [
23
- "./dist/register.js",
24
- "./register.js",
25
- "./register.mjs"
26
- ],
27
- "homepage": "https://github.com/sapphiredev/plugins/tree/main/packages/pattern-commands",
28
- "scripts": {
29
- "lint": "eslint src --ext ts --fix",
30
- "build": "tsc -b src && yarn esm:register && yarn esm:default",
31
- "esm:register": "gen-esm-wrapper dist/register.js dist/register.mjs",
32
- "esm:default": "gen-esm-wrapper dist/index.js dist/index.mjs",
33
- "prepublishOnly": "yarn build"
34
- },
35
- "dependencies": {
36
- "tslib": "^2.3.1"
37
- },
38
- "repository": {
39
- "type": "git",
40
- "url": "git+https://github.com/sapphiredev/plugins.git",
41
- "directory": "packages/pattern-commands"
42
- },
43
- "files": [
44
- "dist",
45
- "!dist/*.tsbuildinfo",
46
- "register.*"
47
- ],
48
- "engines": {
49
- "node": ">=v14.0.0",
50
- "npm": ">=7.0.0"
51
- },
52
- "keywords": [
53
- "sapphiredev",
54
- "plugin",
55
- "bot",
56
- "typescript",
57
- "ts",
58
- "yarn",
59
- "discord",
60
- "sapphire",
61
- "pattern-commands"
62
- ],
63
- "bugs": {
64
- "url": "https://github.com/sapphiredev/plugins/issues"
65
- },
66
- "publishConfig": {
67
- "access": "public"
68
- },
69
- "gitHead": "c82f65ba6f958055dfa2497ba935416f408efc45"
70
- }
2
+ "name": "@sapphire/plugin-pattern-commands",
3
+ "version": "2.2.1-next.f20055d.0",
4
+ "description": "Plugin for @sapphire/framework that adds support for pattern commands.",
5
+ "author": "@sapphire",
6
+ "license": "MIT",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.mjs",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./register": {
17
+ "import": "./register.mjs",
18
+ "require": "./register.js",
19
+ "types": "./register.d.ts"
20
+ }
21
+ },
22
+ "sideEffects": [
23
+ "./dist/register.js",
24
+ "./register.js",
25
+ "./register.mjs"
26
+ ],
27
+ "homepage": "https://github.com/sapphiredev/plugins/tree/main/packages/pattern-commands",
28
+ "scripts": {
29
+ "lint": "eslint src --ext ts --fix",
30
+ "build": "tsc -b src && yarn esm:register && yarn esm:default",
31
+ "esm:register": "gen-esm-wrapper dist/register.js dist/register.mjs",
32
+ "esm:default": "gen-esm-wrapper dist/index.js dist/index.mjs",
33
+ "prepublish": "yarn build",
34
+ "bump": "cliff-jumper",
35
+ "check-update": "cliff-jumper --dry-run"
36
+ },
37
+ "dependencies": {
38
+ "tslib": "^2.4.0"
39
+ },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/sapphiredev/plugins.git",
43
+ "directory": "packages/pattern-commands"
44
+ },
45
+ "files": [
46
+ "dist/**/*.js*",
47
+ "dist/**/*.mjs*",
48
+ "dist/**/*.d*",
49
+ "./register.*"
50
+ ],
51
+ "engines": {
52
+ "node": ">=v14.0.0",
53
+ "npm": ">=7.0.0"
54
+ },
55
+ "keywords": [
56
+ "sapphiredev",
57
+ "plugin",
58
+ "bot",
59
+ "typescript",
60
+ "ts",
61
+ "yarn",
62
+ "discord",
63
+ "sapphire",
64
+ "pattern-commands"
65
+ ],
66
+ "bugs": {
67
+ "url": "https://github.com/sapphiredev/plugins/issues"
68
+ },
69
+ "publishConfig": {
70
+ "access": "public"
71
+ },
72
+ "devDependencies": {
73
+ "gen-esm-wrapper": "^1.1.3",
74
+ "typescript": "^4.6.4"
75
+ }
76
+ }
package/LICENSE.md DELETED
@@ -1,24 +0,0 @@
1
- # The MIT License (MIT)
2
-
3
- Copyright © `2020` `The Sapphire Community and its contributors`
4
-
5
- Permission is hereby granted, free of charge, to any person
6
- obtaining a copy of this software and associated documentation
7
- files (the “Software”), to deal in the Software without
8
- restriction, including without limitation the rights to use,
9
- copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- copies of the Software, and to permit persons to whom the
11
- Software is furnished to do so, subject to the following
12
- conditions:
13
-
14
- The above copyright notice and this permission notice shall be
15
- included in all copies or substantial portions of the Software.
16
-
17
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
18
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24
- OTHER DEALINGS IN THE SOFTWARE.