wikiploy 2.2.3 → 2.2.4

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.
@@ -4,5 +4,13 @@
4
4
  },
5
5
  "editor.detectIndentation": false,
6
6
  "editor.useTabStops": true,
7
- "editor.insertSpaces": false,
7
+ "editor.insertSpaces": false,
8
+ "spellright.language": [
9
+ "en"
10
+ ],
11
+ "spellright.documentTypes": [
12
+ "markdown",
13
+ "latex",
14
+ "plaintext"
15
+ ],
8
16
  }
package/DEV.md CHANGED
@@ -3,7 +3,7 @@ Development
3
3
 
4
4
  Wikiploy is a Node.js project and is configured to use VSCode for development.
5
5
 
6
- ## Prepararion
6
+ ## Preparation
7
7
 
8
8
  ### Install Nodejs
9
9
  Obviously you'll need [Node.js](https://nodejs.org/en).
@@ -15,7 +15,7 @@ Note that you can use [NVM-windows](https://github.com/coreybutler/nvm-windows)
15
15
  Run first `npm i`.
16
16
  You might want to run `npm up` to update some scripts too.
17
17
 
18
- Recomended global modules/tools:
18
+ Recommended global modules/tools:
19
19
  ```bash
20
20
  npm install -g eslint
21
21
  npm install -g mocha
package/assets/test.css CHANGED
@@ -5,4 +5,4 @@
5
5
  .tavern {
6
6
  display: block;
7
7
  }
8
- /*## Wikiploy v2.2.3 with MWN v3.0.1 ##*/
8
+ /*## Wikiploy v2.2.4 with MWN v3.0.1 ##*/
package/assets/test.js CHANGED
@@ -7,4 +7,4 @@
7
7
  */
8
8
  // test.js
9
9
  console.log('test');
10
- /*## Wikiploy v2.2.3 with MWN v3.0.1 ##*/
10
+ /*## Wikiploy v2.2.4 with MWN v3.0.1 ##*/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wikiploy",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "User scripts and gadgets deployment for MediaWiki (Wikipedia).",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "bump-version": "0.5.0",
36
- "chai": "5.x",
37
- "eslint": "8.x",
38
- "mocha": "10.x"
36
+ "chai": "6.x",
37
+ "eslint": "9.x",
38
+ "mocha": "11.x"
39
39
  }
40
40
  }
@@ -6,7 +6,7 @@ import DeployConfig from './DeployConfig.js';
6
6
 
7
7
  import { promises as fs } from "fs"; // node v11+
8
8
 
9
- const version = /*version:main:*/'2.2.3'/*:main:version*/;
9
+ const version = /*version:main:*/'2.2.4'/*:main:version*/;
10
10
 
11
11
  /**
12
12
  * MediaWiki deployment automation.