@sapphire/plugin-hmr 3.0.3-next.ea411df → 3.0.3-next.ef59b2e

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.
@@ -3,7 +3,7 @@
3
3
  var hmr_cjs = require('./lib/hmr.cjs');
4
4
 
5
5
  // src/index.ts
6
- var version = "3.0.3-next.ea411df";
6
+ var version = "3.0.3-next.ef59b2e";
7
7
 
8
8
  exports.version = version;
9
9
  Object.keys(hmr_cjs).forEach(function (k) {
@@ -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.ea411df';\n"]}
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.ef59b2e';\n"]}
@@ -1,7 +1,7 @@
1
1
  import './chunk-PAWJFY3S.mjs';
2
2
  export * from './lib/hmr.mjs';
3
3
 
4
- var version = "3.0.3-next.ea411df";
4
+ var version = "3.0.3-next.ef59b2e";
5
5
 
6
6
  export { version };
7
7
  //# sourceMappingURL=index.mjs.map
@@ -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.ea411df';\n"]}
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.ef59b2e';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/plugin-hmr",
3
- "version": "3.0.3-next.ea411df",
3
+ "version": "3.0.3-next.ef59b2e",
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 -ot .cts",
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.1"
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": "^5.0.0",
84
- "@favware/rollup-type-bundler": "^3.3.0",
85
- "concurrently": "^9.0.1",
86
- "tsup": "^8.3.5",
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",