isaacscript 3.6.44 → 3.6.45

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.
@@ -2,7 +2,7 @@
2
2
  // https://prettier.io/docs/en/configuration.html
3
3
 
4
4
  /** @type {import("prettier").Config} */
5
- module.exports = {
5
+ const config = {
6
6
  // Always print trailing commas:
7
7
  // https://prettier.io/docs/en/options.html#trailing-commas
8
8
  // The default is "es5" (only having trailing commas where valid in ES5). However, always having
@@ -45,3 +45,5 @@ module.exports = {
45
45
  // `pnpm` requires that the plugin is explicitly loaded.
46
46
  plugins: [require.resolve("prettier-plugin-organize-imports")],
47
47
  };
48
+
49
+ module.exports = config;
@@ -2,7 +2,7 @@
2
2
  // https://eslint.org/docs/latest/use/configure/
3
3
 
4
4
  /** @type {import("eslint").Linter.Config} */
5
- module.exports = {
5
+ const config = {
6
6
  extends: [
7
7
  // The linter base is the IsaacScript mod config:
8
8
  // https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/mod.js
@@ -23,3 +23,5 @@ module.exports = {
23
23
  // Insert changed or disabled rules here, if necessary.
24
24
  },
25
25
  };
26
+
27
+ module.exports = config;
@@ -2,7 +2,7 @@
2
2
  // https://prettier.io/docs/en/configuration.html
3
3
 
4
4
  /** @type {import("prettier").Config} */
5
- module.exports = {
5
+ const config = {
6
6
  // Always print trailing commas:
7
7
  // https://prettier.io/docs/en/options.html#trailing-commas
8
8
  // The default is "es5" (only having trailing commas where valid in ES5). However, always having
@@ -33,3 +33,5 @@ module.exports = {
33
33
  // `pnpm` requires that the plugin is explicitly loaded.
34
34
  plugins: [require.resolve("prettier-plugin-organize-imports")],
35
35
  };
36
+
37
+ module.exports = config;
@@ -2,7 +2,7 @@
2
2
  // https://eslint.org/docs/latest/use/configure/
3
3
 
4
4
  /** @type {import("eslint").Linter.Config} */
5
- module.exports = {
5
+ const config = {
6
6
  extends: [
7
7
  // The linter base is the shared IsaacScript config:
8
8
  // https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/base.js
@@ -24,3 +24,5 @@ module.exports = {
24
24
  // Insert changed or disabled rules here, if necessary.
25
25
  },
26
26
  };
27
+
28
+ module.exports = config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript",
3
- "version": "3.6.44",
3
+ "version": "3.6.45",
4
4
  "description": "A command line tool for managing Isaac mods written in TypeScript.",
5
5
  "keywords": [
6
6
  "isaac",