@breadstone-tools/localizator-core 0.0.81 → 0.0.82
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 +22 -0
- package/Detectors/Utils.d.ts +8 -8
- package/Detectors/Utils.js +8 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## 0.0.81 (2025-07-30)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- update release version to 0.0.80 in package.json ([96a94fca93](https://github.com/RueDeRennes/mosaik/commit/96a94fca93))
|
|
6
|
+
|
|
7
|
+
## 0.0.80 (2025-07-30)
|
|
8
|
+
|
|
9
|
+
This was a version bump only for localizator-core to align it with other projects, there were no code changes.
|
|
10
|
+
|
|
11
|
+
## 0.0.79 (2025-07-30)
|
|
12
|
+
|
|
13
|
+
### 🚀 Features
|
|
14
|
+
|
|
15
|
+
- Implement SandboxProjectFactory and SandboxProjectTemplateEngine ([3300298aec](https://github.com/RueDeRennes/mosaik/commit/3300298aec))
|
|
16
|
+
- add YAML code generation and update chat mode configuration ([9fe1bb330c](https://github.com/RueDeRennes/mosaik/commit/9fe1bb330c))
|
|
17
|
+
- Enhance Landing and App View Components ([459cb772ed](https://github.com/RueDeRennes/mosaik/commit/459cb772ed))
|
|
18
|
+
|
|
19
|
+
### 🩹 Fixes
|
|
20
|
+
|
|
21
|
+
- correct spelling of 'initialize' in various files and update related interfaces ([3c70f28918](https://github.com/RueDeRennes/mosaik/commit/3c70f28918))
|
|
22
|
+
|
|
1
23
|
## 0.0.78 (2025-07-20)
|
|
2
24
|
|
|
3
25
|
### 🚀 Features
|
package/Detectors/Utils.d.ts
CHANGED
|
@@ -24,17 +24,17 @@ export declare function escapeRegExp(value: string): string;
|
|
|
24
24
|
* const isValid = isResourceKey("loc.this.is.a.key", "loc.");
|
|
25
25
|
* console.log(isValid); // true
|
|
26
26
|
*
|
|
27
|
-
* const
|
|
28
|
-
* console.log(
|
|
27
|
+
* const isValid = isResourceKey("this.is.a.key", "loc.");
|
|
28
|
+
* console.log(isValid); // false
|
|
29
29
|
*
|
|
30
|
-
* const
|
|
31
|
-
* console.log(
|
|
30
|
+
* const isValid = isResourceKey("loc.this.is.a.key", "loc.", ".value");
|
|
31
|
+
* console.log(isValid); // false
|
|
32
32
|
*
|
|
33
|
-
* const
|
|
34
|
-
* console.log(
|
|
33
|
+
* const isValid = isResourceKey("this is invalid", "loc.");
|
|
34
|
+
* console.log(isValid); // false
|
|
35
35
|
*
|
|
36
|
-
* const
|
|
37
|
-
* console.log(
|
|
36
|
+
* const isValid = isResourceKey("a.valid.key");
|
|
37
|
+
* console.log(isValid); // true
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
export declare function isResourceKey(key: string, prefix?: string, suffix?: string): boolean;
|
package/Detectors/Utils.js
CHANGED
|
@@ -30,17 +30,17 @@ function escapeRegExp(value) {
|
|
|
30
30
|
* const isValid = isResourceKey("loc.this.is.a.key", "loc.");
|
|
31
31
|
* console.log(isValid); // true
|
|
32
32
|
*
|
|
33
|
-
* const
|
|
34
|
-
* console.log(
|
|
33
|
+
* const isValid = isResourceKey("this.is.a.key", "loc.");
|
|
34
|
+
* console.log(isValid); // false
|
|
35
35
|
*
|
|
36
|
-
* const
|
|
37
|
-
* console.log(
|
|
36
|
+
* const isValid = isResourceKey("loc.this.is.a.key", "loc.", ".value");
|
|
37
|
+
* console.log(isValid); // false
|
|
38
38
|
*
|
|
39
|
-
* const
|
|
40
|
-
* console.log(
|
|
39
|
+
* const isValid = isResourceKey("this is invalid", "loc.");
|
|
40
|
+
* console.log(isValid); // false
|
|
41
41
|
*
|
|
42
|
-
* const
|
|
43
|
-
* console.log(
|
|
42
|
+
* const isValid = isResourceKey("a.valid.key");
|
|
43
|
+
* console.log(isValid); // true
|
|
44
44
|
* ```
|
|
45
45
|
*/
|
|
46
46
|
function isResourceKey(key, prefix, suffix) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone-tools/localizator-core",
|
|
3
3
|
"description": "Localizator core library",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.82",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
7
7
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"module": "./Index.js",
|
|
14
14
|
"types": "./Index.d.ts",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@breadstone-infrastructure/utilities": "^0.0.
|
|
16
|
+
"@breadstone-infrastructure/utilities": "^0.0.82",
|
|
17
17
|
"cheerio": "^1.1.2"
|
|
18
18
|
}
|
|
19
19
|
}
|