@sapphire/plugin-editable-commands 1.2.0 → 1.2.1-next.09b336b.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 (2) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/package.json +75 -69
package/CHANGELOG.md ADDED
@@ -0,0 +1,60 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ # [1.2.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.1.3...@sapphire/plugin-editable-commands@1.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
+ ## [1.1.3](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.1.2...@sapphire/plugin-editable-commands@1.1.3) (2021-12-28)
12
+
13
+ ### Bug Fixes
14
+
15
+ - **editable-commands:** bump `@skyra/editable-commands` to remove dependency on `message.deleted` ([8909612](https://github.com/sapphiredev/plugins/commit/890961274e040db29ff6caeb3da5c9caf7187c32))
16
+
17
+ ## [1.1.2](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.1.1...@sapphire/plugin-editable-commands@1.1.2) (2021-12-21)
18
+
19
+ **Note:** Version bump only for package @sapphire/plugin-editable-commands
20
+
21
+ ## [1.1.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.1.0...@sapphire/plugin-editable-commands@1.1.1) (2021-11-25)
22
+
23
+ ### Bug Fixes
24
+
25
+ - **editable-commands:** bump @skyra/editable-commands dependency to fix an issue in latest DJS ([478833b](https://github.com/sapphiredev/plugins/commit/478833b2d7d6f17a6e735e494618786c90b96926))
26
+
27
+ # [1.1.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.0.2...@sapphire/plugin-editable-commands@1.1.0) (2021-11-21)
28
+
29
+ ### Features
30
+
31
+ - expose and use namespaces for options, context, etc ([#176](https://github.com/sapphiredev/plugins/issues/176)) ([33452da](https://github.com/sapphiredev/plugins/commit/33452da808d91313a5d3bf680e11b5208ac67442))
32
+
33
+ ## [1.0.2](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.0.1...@sapphire/plugin-editable-commands@1.0.2) (2021-11-06)
34
+
35
+ ### Bug Fixes
36
+
37
+ - **docs:** replace command usage of `run` to `messageRun` ([#160](https://github.com/sapphiredev/plugins/issues/160)) ([415adb8](https://github.com/sapphiredev/plugins/commit/415adb85b884da5d0f1f2ce07a9d46134f2bcb12))
38
+
39
+ ## [1.0.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-editable-commands@1.0.0...@sapphire/plugin-editable-commands@1.0.1) (2021-10-17)
40
+
41
+ ### Bug Fixes
42
+
43
+ - allow more node & npm versions in engines field ([ce5b12f](https://github.com/sapphiredev/plugins/commit/ce5b12f8142297bceda49b85574a95a3cf9112ab))
44
+
45
+ # 1.0.0 (2021-10-16)
46
+
47
+ ### Bug Fixes
48
+
49
+ - **editable-commands:** register post initialization instead of pre- ([#109](https://github.com/sapphiredev/plugins/issues/109)) ([5e97bc7](https://github.com/sapphiredev/plugins/commit/5e97bc7ef6809edd5f7bb76018b0b4d209589a54))
50
+
51
+ ### Features
52
+
53
+ - **i18next:** update i18next dependency ([#129](https://github.com/sapphiredev/plugins/issues/129)) ([96519de](https://github.com/sapphiredev/plugins/commit/96519de5de253db390ed9a76ed073ffe1eabd187))
54
+ - **plugin-editable-commands:** added first version ([#106](https://github.com/sapphiredev/plugins/issues/106)) ([9af3e85](https://github.com/sapphiredev/plugins/commit/9af3e85a8641f852eaf114679ceed1e71034d16c))
55
+
56
+ ### BREAKING CHANGES
57
+
58
+ - **i18next:** i18next has been updated to v21.0.1. Please also seee the breaking changes for i18next [here](https://github.com/i18next/i18next/blob/master/CHANGELOG.md#2100) and their migration guide [here](https://www.i18next.com/misc/migration-guide#v-20-x-x-to-v-21-0-0)
59
+
60
+ - chore: activate renovate
package/package.json CHANGED
@@ -1,70 +1,76 @@
1
1
  {
2
- "name": "@sapphire/plugin-editable-commands",
3
- "version": "1.2.0",
4
- "description": "Plugin for @sapphire/framework to have editable commands",
5
- "author": "@sapphire",
6
- "license": "MIT",
7
- "main": "dist/index.js",
8
- "module": "dist/index.mjs",
9
- "types": "dist/index.d.ts",
10
- "typedocMain": "src/index.ts",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.mjs",
14
- "require": "./dist/index.js",
15
- "types": "./dist/index.d.ts"
16
- },
17
- "./register": {
18
- "import": "./register.mjs",
19
- "require": "./register.js",
20
- "types": "./register.d.ts"
21
- }
22
- },
23
- "sideEffects": [
24
- "./dist/register.js",
25
- "./register.js",
26
- "./register.mjs"
27
- ],
28
- "homepage": "https://github.com/sapphiredev/plugins/tree/main/packages/editable-commands",
29
- "scripts": {
30
- "lint": "eslint src --ext ts --fix",
31
- "build": "tsc -b src && yarn esm:register && yarn esm:default",
32
- "esm:register": "gen-esm-wrapper dist/register.js dist/register.mjs",
33
- "esm:default": "gen-esm-wrapper dist/index.js dist/index.mjs",
34
- "prepublishOnly": "yarn build"
35
- },
36
- "dependencies": {
37
- "@skyra/editable-commands": "^2.1.2",
38
- "tslib": "^2.3.1"
39
- },
40
- "repository": {
41
- "type": "git",
42
- "url": "git+https://github.com/sapphiredev/plugins.git",
43
- "directory": "packages/editable-commands"
44
- },
45
- "files": [
46
- "dist",
47
- "!dist/*.tsbuildinfo",
48
- "register.*"
49
- ],
50
- "engines": {
51
- "node": ">=16.6.0",
52
- "npm": ">=7.0.0"
53
- },
54
- "keywords": [
55
- "sapphiredev",
56
- "plugin",
57
- "bot",
58
- "typescript",
59
- "ts",
60
- "yarn",
61
- "discord",
62
- "sapphire"
63
- ],
64
- "bugs": {
65
- "url": "https://github.com/sapphiredev/plugins/issues"
66
- },
67
- "publishConfig": {
68
- "access": "public"
69
- }
70
- }
2
+ "name": "@sapphire/plugin-editable-commands",
3
+ "version": "1.2.1-next.09b336b.0",
4
+ "description": "Plugin for @sapphire/framework to have editable 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/editable-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
+ "prepack": "yarn build",
34
+ "bump": "cliff-jumper",
35
+ "check-update": "cliff-jumper --dry-run"
36
+ },
37
+ "dependencies": {
38
+ "@skyra/editable-commands": "^2.1.2",
39
+ "tslib": "^2.4.0"
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/sapphiredev/plugins.git",
44
+ "directory": "packages/editable-commands"
45
+ },
46
+ "files": [
47
+ "dist/**/*.js*",
48
+ "dist/**/*.mjs*",
49
+ "dist/**/*.d*",
50
+ "./register.*"
51
+ ],
52
+ "engines": {
53
+ "node": ">=16.6.0",
54
+ "npm": ">=7.0.0"
55
+ },
56
+ "keywords": [
57
+ "sapphiredev",
58
+ "plugin",
59
+ "bot",
60
+ "typescript",
61
+ "ts",
62
+ "yarn",
63
+ "discord",
64
+ "sapphire"
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.7.3"
75
+ }
76
+ }