extwee 2.3.1 → 2.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extwee",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "A story compiler tool using Twine-compatible formats",
5
5
  "author": "Dan Cox",
6
6
  "main": "index.js",
@@ -38,6 +38,7 @@
38
38
  "@babel/preset-env": "^7.28.0",
39
39
  "@eslint/js": "^9.29.0",
40
40
  "@inquirer/prompts": "^7.6.0",
41
+ "@types/node": "^24.1.0",
41
42
  "@types/semver": "^7.7.0",
42
43
  "@types/uuid": "^10.0.0",
43
44
  "babel-loader": "^10.0.0",
@@ -45,7 +46,7 @@
45
46
  "core-js": "^3.43.0",
46
47
  "eslint": "^9.29.0",
47
48
  "eslint-plugin-jest": "^29.0.1",
48
- "eslint-plugin-jsdoc": "^51.0.1",
49
+ "eslint-plugin-jsdoc": "^52.0.2",
49
50
  "globals": "^16.3.0",
50
51
  "jest": "^30.0.4",
51
52
  "jest-environment-jsdom": "^30.0.4",
package/src/Story.js CHANGED
@@ -7,7 +7,7 @@ import { encode } from 'html-entities';
7
7
  const creatorName = 'extwee';
8
8
 
9
9
  // Set the creator version.
10
- const creatorVersion = '2.3.1';
10
+ const creatorVersion = '2.3.2';
11
11
 
12
12
  /**
13
13
  * Story class.
@@ -251,5 +251,5 @@ export class Story {
251
251
  #private;
252
252
  }
253
253
  export const creatorName: "extwee";
254
- export const creatorVersion: "2.3.1";
254
+ export const creatorVersion: "2.3.2";
255
255
  import Passage from './Passage.js';