@socialgouv/fiches-travail-data-types 4.377.0 → 4.379.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # [4.379.0](https://github.com/SocialGouv/fiches-travail-data/compare/v4.378.0...v4.379.0) (2022-12-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **picture:** bug ([#388](https://github.com/SocialGouv/fiches-travail-data/issues/388)) ([52da1d2](https://github.com/SocialGouv/fiches-travail-data/commit/52da1d272b65765c2cbeedf38f6e39a234a30d6c))
7
+
8
+
9
+ ### Features
10
+
11
+ * **data:** 20221208_1544 update ([f99f469](https://github.com/SocialGouv/fiches-travail-data/commit/f99f46908a48c77878c573164c01c91b32610473))
12
+
13
+ # [4.378.0](https://github.com/SocialGouv/fiches-travail-data/compare/v4.377.0...v4.378.0) (2022-12-07)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **npm:** add data folder ([#387](https://github.com/SocialGouv/fiches-travail-data/issues/387)) ([6939a81](https://github.com/SocialGouv/fiches-travail-data/commit/6939a81918497657c15fb4c813eaa1f4978fd229))
19
+
20
+
21
+ ### Features
22
+
23
+ * **data:** 20221207_1337 update ([a376126](https://github.com/SocialGouv/fiches-travail-data/commit/a37612697f3714c3029e21d3c69a783759552742))
24
+
1
25
  # [4.377.0](https://github.com/SocialGouv/fiches-travail-data/compare/v4.376.0...v4.377.0) (2022-12-06)
2
26
 
3
27
 
@@ -157,10 +157,10 @@ function parseDom(dom, id, url) {
157
157
  if (!untitledSection.description) {
158
158
  untitledSection.description = "temp description";
159
159
  }
160
- untitledSection.html += nextArticleElement.outerHTML
160
+ untitledSection.html += (0, postProcess_1.htmlPostParser)(nextArticleElement.outerHTML
161
161
  .replace(/\n+/g, "")
162
162
  .replace(/>\s+</g, "><")
163
- .replace(/\s+/g, " ");
163
+ .replace(/\s+/g, " "));
164
164
  untitledSection.text +=
165
165
  " " + nextArticleElement.textContent.replace(/\s+/g, " ").trim();
166
166
  }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@socialgouv/fiches-travail-data-types",
3
- "version": "4.377.0",
3
+ "version": "4.379.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.js",
6
6
  "files": [
7
- "build"
7
+ "build",
8
+ "data"
8
9
  ],
9
10
  "types": "build/index.d.ts",
10
11
  "repository": {