@sapphire/plugin-hmr 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 +32 -0
  2. package/package.json +75 -69
package/CHANGELOG.md ADDED
@@ -0,0 +1,32 @@
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-hmr@1.1.1...@sapphire/plugin-hmr@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
+ - **hmr:** add silent flag ([#233](https://github.com/sapphiredev/plugins/issues/233)) ([4692d34](https://github.com/sapphiredev/plugins/commit/4692d3442c4bf85e1c46cc2c18da0a46f2c3de4f))
11
+
12
+ ## [1.1.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-hmr@1.1.0...@sapphire/plugin-hmr@1.1.1) (2022-01-23)
13
+
14
+ **Note:** Version bump only for package @sapphire/plugin-hmr
15
+
16
+ # [1.1.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-hmr@1.0.1...@sapphire/plugin-hmr@1.1.0) (2022-01-13)
17
+
18
+ ### Features
19
+
20
+ - **hmr:** make it possible set the chokidar watch options ([#223](https://github.com/sapphiredev/plugins/issues/223)) ([3fe7e48](https://github.com/sapphiredev/plugins/commit/3fe7e48a3577df6d9addc613cae74ccb07e41639))
21
+
22
+ ## [1.0.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-hmr@1.0.0...@sapphire/plugin-hmr@1.0.1) (2022-01-08)
23
+
24
+ ### Bug Fixes
25
+
26
+ - **hmr:** improve logging ([#212](https://github.com/sapphiredev/plugins/issues/212)) ([94efab7](https://github.com/sapphiredev/plugins/commit/94efab789b7b72672f8cd89b00c729ef4f6c795c))
27
+
28
+ # 1.0.0 (2022-01-08)
29
+
30
+ ### Features
31
+
32
+ - add HMR plugin ([#209](https://github.com/sapphiredev/plugins/issues/209)) ([4a18bb1](https://github.com/sapphiredev/plugins/commit/4a18bb1377a8d506fddc5bb991430503902d393b))
package/package.json CHANGED
@@ -1,70 +1,76 @@
1
1
  {
2
- "name": "@sapphire/plugin-hmr",
3
- "version": "1.2.0",
4
- "description": "Plugin for @sapphire/framework for hot module reloading for pieces",
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://sapphirejs.dev",
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
- "chokidar": "^3.5.3",
38
- "tslib": "2.x"
39
- },
40
- "repository": {
41
- "type": "git",
42
- "url": "git+https://github.com/sapphiredev/plugins.git",
43
- "directory": "packages/hmr"
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-hmr",
3
+ "version": "1.2.1-next.09b336b.0",
4
+ "description": "Plugin for @sapphire/framework for hot module reloading for pieces",
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://sapphirejs.dev",
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
+ "chokidar": "^3.5.3",
39
+ "tslib": "2.x"
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/sapphiredev/plugins.git",
44
+ "directory": "packages/hmr"
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
+ }