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.
- package/.vscode/settings.json +9 -1
- package/DEV.md +2 -2
- package/assets/test.css +1 -1
- package/assets/test.js +1 -1
- package/package.json +4 -4
- package/src/WikiployLite.js +1 -1
package/.vscode/settings.json
CHANGED
|
@@ -4,5 +4,13 @@
|
|
|
4
4
|
},
|
|
5
5
|
"editor.detectIndentation": false,
|
|
6
6
|
"editor.useTabStops": true,
|
|
7
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
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
package/assets/test.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wikiploy",
|
|
3
|
-
"version": "2.2.
|
|
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": "
|
|
37
|
-
"eslint": "
|
|
38
|
-
"mocha": "
|
|
36
|
+
"chai": "6.x",
|
|
37
|
+
"eslint": "9.x",
|
|
38
|
+
"mocha": "11.x"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/src/WikiployLite.js
CHANGED
|
@@ -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.
|
|
9
|
+
const version = /*version:main:*/'2.2.4'/*:main:version*/;
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* MediaWiki deployment automation.
|