ep_font_size 0.4.61 → 0.4.63
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/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const eejs = require('ep_etherpad-lite/node/eejs/');
|
|
4
|
-
|
|
4
|
+
import settings from 'ep_etherpad-lite/node/utils/Settings'
|
|
5
5
|
const shared = require('./static/js/shared');
|
|
6
6
|
|
|
7
7
|
exports.eejsBlock_editbarMenuLeft = (hookName, args, cb) => {
|
package/locales/kaa.json
ADDED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"description": "Apply sizes to fonts",
|
|
3
3
|
"name": "ep_font_size",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.63",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "John McLear",
|
|
@@ -14,24 +14,24 @@
|
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {},
|
|
16
16
|
"engines": {
|
|
17
|
-
"node": ">=
|
|
17
|
+
"node": ">=20.0.0"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/ether/
|
|
21
|
+
"url": "https://github.com/ether/ether-plugins.git"
|
|
22
22
|
},
|
|
23
23
|
"bugs": {
|
|
24
|
-
"url": "https://github.com/ether/
|
|
24
|
+
"url": "https://github.com/ether/ether-plugins/issues"
|
|
25
25
|
},
|
|
26
|
-
"homepage": "https://github.com/ether/ep_font_size#readme",
|
|
26
|
+
"homepage": "https://github.com/ether/ether-plugins/tree/main/ep_font_size#readme",
|
|
27
27
|
"funding": {
|
|
28
28
|
"type": "individual",
|
|
29
29
|
"url": "https://etherpad.org/"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"eslint": "^
|
|
32
|
+
"eslint": "^9.24.0",
|
|
33
33
|
"eslint-config-etherpad": "^4.0.4",
|
|
34
|
-
"typescript": "^5.4.
|
|
34
|
+
"typescript": "^5.4.3"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"lint": "eslint .",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {generateJWTToken
|
|
3
|
+
import {init} from "ep_etherpad-lite/tests/backend/common";
|
|
4
|
+
import {randomString} from "ep_etherpad-lite/static/js/pad_utils"
|
|
5
|
+
import {generateJWTToken} from "ep_etherpad-lite/tests/backend/common";
|
|
6
6
|
|
|
7
7
|
let agent;
|
|
8
8
|
const apiVersion = 1;
|
|
@@ -58,7 +58,7 @@ describe('ep_font_size - export size styles to HTML', function () {
|
|
|
58
58
|
let padID;
|
|
59
59
|
let html;
|
|
60
60
|
|
|
61
|
-
before(async function () { agent = await
|
|
61
|
+
before(async function () { agent = await init(); });
|
|
62
62
|
|
|
63
63
|
// create a new pad before each test run
|
|
64
64
|
beforeEach(function (done) {
|