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
- const settings = require('ep_etherpad-lite/node/utils/Settings');
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) => {
@@ -0,0 +1,8 @@
1
+ {
2
+ "@metadata": {
3
+ "authors": [
4
+ "Inabat Allanova"
5
+ ]
6
+ },
7
+ "ep_font_size.size": "Shrift ólshemi"
8
+ }
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.61",
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": ">=18.0.0"
17
+ "node": ">=20.0.0"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/ether/ep_font_size.git"
21
+ "url": "https://github.com/ether/ether-plugins.git"
22
22
  },
23
23
  "bugs": {
24
- "url": "https://github.com/ether/ep_font_size/issues"
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": "^8.57.0",
32
+ "eslint": "^9.24.0",
33
33
  "eslint-config-etherpad": "^4.0.4",
34
- "typescript": "^5.4.2"
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
- const common = require('ep_etherpad-lite/tests/backend/common');
4
- const randomString = require('ep_etherpad-lite/static/js/pad_utils').randomString;
5
- import {generateJWTToken, generateJWTTokenUser} from "ep_etherpad-lite/tests/backend/common";
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 common.init(); });
61
+ before(async function () { agent = await init(); });
62
62
 
63
63
  // create a new pad before each test run
64
64
  beforeEach(function (done) {