@sapphire/plugin-hmr 3.0.3-next.f7c0c49 → 3.0.3-next.fe39124
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/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +7 -7
package/dist/cjs/index.cjs
CHANGED
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";;;;;AAiBO,IAAM,OAAkB,GAAA","file":"index.cjs","sourcesContent":["export * from './lib/hmr';\n\nimport type { HMROptions } from './lib/hmr';\n\ndeclare module 'discord.js' {\n\texport interface ClientOptions {\n\t\thmr?: HMROptions;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-hmr](https://github.com/sapphiredev/plugins/blob/main/packages/hmr) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '3.0.3-next.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";;;;;AAiBO,IAAM,OAAkB,GAAA","file":"index.cjs","sourcesContent":["export * from './lib/hmr';\n\nimport type { HMROptions } from './lib/hmr';\n\ndeclare module 'discord.js' {\n\texport interface ClientOptions {\n\t\thmr?: HMROptions;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-hmr](https://github.com/sapphiredev/plugins/blob/main/packages/hmr) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '3.0.3-next.fe39124';\n"]}
|
package/dist/esm/index.mjs
CHANGED
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";;;AAiBO,IAAM,OAAkB,GAAA","file":"index.mjs","sourcesContent":["export * from './lib/hmr';\n\nimport type { HMROptions } from './lib/hmr';\n\ndeclare module 'discord.js' {\n\texport interface ClientOptions {\n\t\thmr?: HMROptions;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-hmr](https://github.com/sapphiredev/plugins/blob/main/packages/hmr) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '3.0.3-next.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"names":[],"mappings":";;;AAiBO,IAAM,OAAkB,GAAA","file":"index.mjs","sourcesContent":["export * from './lib/hmr';\n\nimport type { HMROptions } from './lib/hmr';\n\ndeclare module 'discord.js' {\n\texport interface ClientOptions {\n\t\thmr?: HMROptions;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-hmr](https://github.com/sapphiredev/plugins/blob/main/packages/hmr) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '3.0.3-next.fe39124';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/plugin-hmr",
|
|
3
|
-
"version": "3.0.3-next.
|
|
3
|
+
"version": "3.0.3-next.fe39124",
|
|
4
4
|
"description": "Plugin for @sapphire/framework for hot module reloading for pieces",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"lint": "eslint src --ext ts --fix",
|
|
39
39
|
"build": "tsup && yarn build:types && yarn build:rename-cjs-register",
|
|
40
40
|
"build:types": "concurrently \"yarn:build:types:*\"",
|
|
41
|
-
"build:types:cjs": "rollup-type-bundler -d dist/cjs -
|
|
41
|
+
"build:types:cjs": "rollup-type-bundler -d dist/cjs --output-typings-file-extension .cts",
|
|
42
42
|
"build:types:esm": "rollup-type-bundler -d dist/esm -t .mts",
|
|
43
43
|
"build:types:cleanup": "tsx ../../scripts/clean-register-imports.mts",
|
|
44
44
|
"build:rename-cjs-register": "tsx ../../scripts/rename-cjs-register.mts",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"check-update": "cliff-jumper --dry-run"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"chokidar": "^4.0.
|
|
52
|
+
"chokidar": "^4.0.3"
|
|
53
53
|
},
|
|
54
54
|
"repository": {
|
|
55
55
|
"type": "git",
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@favware/cliff-jumper": "^
|
|
84
|
-
"@favware/rollup-type-bundler": "^
|
|
85
|
-
"concurrently": "^9.1.
|
|
86
|
-
"tsup": "^8.3.
|
|
83
|
+
"@favware/cliff-jumper": "^6.0.0",
|
|
84
|
+
"@favware/rollup-type-bundler": "^4.0.0",
|
|
85
|
+
"concurrently": "^9.1.2",
|
|
86
|
+
"tsup": "^8.3.6",
|
|
87
87
|
"tsx": "^4.19.2",
|
|
88
88
|
"typedoc": "^0.26.11",
|
|
89
89
|
"typedoc-json-parser": "^10.2.0",
|