@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 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
@@ -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 hasInvalidPrefix = isResourceKey("this.is.a.key", "loc.");
28
- * console.log(hasInvalidPrefix); // false
27
+ * const isValid = isResourceKey("this.is.a.key", "loc.");
28
+ * console.log(isValid); // false
29
29
  *
30
- * const hasInvalidSuffix = isResourceKey("loc.this.is.a.key", "loc.", ".value");
31
- * console.log(hasInvalidSuffix); // false
30
+ * const isValid = isResourceKey("loc.this.is.a.key", "loc.", ".value");
31
+ * console.log(isValid); // false
32
32
  *
33
- * const containsSpaces = isResourceKey("this is invalid", "loc.");
34
- * console.log(containsSpaces); // false
33
+ * const isValid = isResourceKey("this is invalid", "loc.");
34
+ * console.log(isValid); // false
35
35
  *
36
- * const noPrefixOrSuffix = isResourceKey("a.valid.key");
37
- * console.log(noPrefixOrSuffix); // true
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;
@@ -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 hasInvalidPrefix = isResourceKey("this.is.a.key", "loc.");
34
- * console.log(hasInvalidPrefix); // false
33
+ * const isValid = isResourceKey("this.is.a.key", "loc.");
34
+ * console.log(isValid); // false
35
35
  *
36
- * const hasInvalidSuffix = isResourceKey("loc.this.is.a.key", "loc.", ".value");
37
- * console.log(hasInvalidSuffix); // false
36
+ * const isValid = isResourceKey("loc.this.is.a.key", "loc.", ".value");
37
+ * console.log(isValid); // false
38
38
  *
39
- * const containsSpaces = isResourceKey("this is invalid", "loc.");
40
- * console.log(containsSpaces); // false
39
+ * const isValid = isResourceKey("this is invalid", "loc.");
40
+ * console.log(isValid); // false
41
41
  *
42
- * const noPrefixOrSuffix = isResourceKey("a.valid.key");
43
- * console.log(noPrefixOrSuffix); // true
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.81",
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.81",
16
+ "@breadstone-infrastructure/utilities": "^0.0.82",
17
17
  "cheerio": "^1.1.2"
18
18
  }
19
19
  }