@legalplace/tagextractor 2.4.19 → 2.5.1

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
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.5.1](https://git.legalplace.eu/legalplace/tagextractor/compare/@legalplace/tagextractor@2.5.0...@legalplace/tagextractor@2.5.1) (2023-01-04)
7
+
8
+ **Note:** Version bump only for package @legalplace/tagextractor
9
+
10
+
11
+
12
+
13
+
14
+ # [2.5.0](https://git.legalplace.eu/legalplace/tagextractor/compare/@legalplace/tagextractor@2.4.19...@legalplace/tagextractor@2.5.0) (2022-12-27)
15
+
16
+
17
+ ### Features
18
+
19
+ * improving eslint config, adding basic config (without react) and linting all api[#7212](https://git.legalplace.eu/legalplace/tagextractor/issues/7212) ([e4f9168](https://git.legalplace.eu/legalplace/tagextractor/commits/e4f9168048ce0b5d8315aa918ff9cde3f03644c2))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [2.4.19](https://git.legalplace.eu/legalplace/tagextractor/compare/@legalplace/tagextractor@2.4.18...@legalplace/tagextractor@2.4.19) (2022-12-26)
7
26
 
8
27
  **Note:** Version bump only for package @legalplace/tagextractor
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import TagExtractor from "./libs/Extractor";
2
- import TagsType, { OptionTagType, VariableTagType } from "./types/tags.type";
2
+ import type { OptionTagType, VariableTagType } from "./types/tags.type";
3
+ import type TagsType from "./types/tags.type";
3
4
  export type { TagsType, OptionTagType, VariableTagType };
4
5
  export default TagExtractor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/tagextractor",
3
- "version": "2.4.19",
3
+ "version": "2.5.1",
4
4
  "description": "TagExtractor",
5
5
  "main": "dist/index.js",
6
6
  "repository": "https://git.legalplace.eu/legalplace/tagextractor",
@@ -17,14 +17,14 @@
17
17
  "test:coverage": "jest test --coverage --watchAll=false "
18
18
  },
19
19
  "dependencies": {
20
- "@legalplace/conditions-runner": "^1.1.25",
20
+ "@legalplace/conditions-runner": "^1.2.1",
21
21
  "@legalplace/lplogic": "2.1.6",
22
22
  "@legalplace/models-v3-types": "3.8.0",
23
- "@legalplace/ovc-converter": "^1.1.24",
23
+ "@legalplace/ovc-converter": "^1.2.1",
24
24
  "@legalplace/referencesparser": "2.2.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@legalplace/eslint-config": "^2.1.5",
27
+ "@legalplace/eslint-config": "^2.2.0",
28
28
  "@legalplace/prettier-config": "^2.1.3",
29
29
  "@legalplace/types": "1.1.0",
30
30
  "@swc-node/jest": "^1.4.3",
@@ -43,5 +43,5 @@
43
43
  "typescript": "4.5.2"
44
44
  },
45
45
  "prettier": "@legalplace/prettier-config",
46
- "gitHead": "3d35bf3433a95dd7b1de71d7ea1dd59cc4400c45"
46
+ "gitHead": "6f4cf6365562ef14c67d69bcd6d5a03c1f3915a1"
47
47
  }
package/src/index.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import TagExtractor from "./libs/Extractor";
2
2
 
3
- import TagsType, { OptionTagType, VariableTagType } from "./types/tags.type";
3
+ import type { OptionTagType, VariableTagType } from "./types/tags.type";
4
+ import type TagsType from "./types/tags.type";
4
5
 
5
6
  export type { TagsType, OptionTagType, VariableTagType };
6
7
  export default TagExtractor;