@eso-status/forum-message 1.0.8 → 1.0.9

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.
@@ -195,7 +195,7 @@ var ForumMessageConnector = /** @class */ (function () {
195
195
  ForumMessageConnector.splitRawMessage = function (mergedRawMessage) {
196
196
  var list = [];
197
197
  mergedRawMessage.split('<br />').forEach(function (item) {
198
- list.push.apply(list, item.split('<br>'));
198
+ list.push.apply(list, item.split('<br/>'));
199
199
  });
200
200
  return list;
201
201
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eso-status/forum-message",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Library used to get servers status of The elders scrolls Online game with https://forums.elderscrollsonline.com/ and https://forums.elderscrollsonline.com/en/categories/pts",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -10,7 +10,7 @@
10
10
  "build": "rm -R -f lib/* && tsc",
11
11
  "test": "jest",
12
12
  "start": "node .",
13
- "dev": "npm run lint && npm run build && npm run start",
13
+ "dev": "npm run build && npm run start",
14
14
  "dev:test": "npm run lint && npm run build && npm run test",
15
15
  "watch": "nodemon --exec npm run dev",
16
16
  "watch:test": "nodemon --exec npm run dev:test"
@@ -59,6 +59,7 @@
59
59
  },
60
60
  "dependencies": {
61
61
  "axios": "1.6.8",
62
+ "fs": "^0.0.1-security",
62
63
  "moment": "2.30.1"
63
64
  }
64
65
  }