@avstantso/utils-languages 1.0.3 → 1.1.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
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.1.0] - 2026-01-18
6
+
7
+ ### Changed
8
+
9
+ - Updated all dependencies
10
+
11
+ ## [1.0.4] - 2026-01-16
12
+
13
+ ### Changed
14
+
15
+ - Updated `@avstantso/core` dependency (fix `process is not defined` error in Vite build)
16
+
5
17
  ## [1.0.3] - 2026-01-16
6
18
 
7
19
  ### Changed
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@avstantso/utils-languages",
3
3
  "license": "MIT",
4
4
  "author": "avstantso",
5
- "version": "1.0.3",
5
+ "version": "1.1.0",
6
6
  "description": "AVStantso framework utils: languages",
7
7
  "keywords": [
8
8
  "Rus"
@@ -23,13 +23,13 @@
23
23
  "test": "NODE_ENV=test jest --coverage"
24
24
  },
25
25
  "dependencies": {
26
- "@avstantso/concepts": "1.0.3",
27
- "@avstantso/core": "1.0.3",
28
- "@avstantso/errors": "1.0.4",
29
- "@avstantso/js": "1.0.3",
30
- "@avstantso/std-ext": "1.0.2",
31
- "@avstantso/ts": "1.0.3",
32
- "@avstantso/utils-enum-class": "1.0.3"
26
+ "@avstantso/concepts": "1.1.0",
27
+ "@avstantso/core": "1.1.0",
28
+ "@avstantso/errors": "1.1.0",
29
+ "@avstantso/js": "1.1.0",
30
+ "@avstantso/std-ext": "1.1.0",
31
+ "@avstantso/ts": "1.1.0",
32
+ "@avstantso/utils-enum-class": "1.1.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@avstantso/dev-basic": "1.0.0"
@@ -1 +0,0 @@
1
- import './rus';
@@ -1,20 +0,0 @@
1
- declare namespace AVStantso {
2
- /**
3
- * @summary Russian grammar helpers
4
- */
5
- namespace Rus { }
6
- namespace Code {
7
- /**
8
- * @summary Russian grammar helpers
9
- */
10
- interface Rus {
11
- }
12
- }
13
- interface Code {
14
- /**
15
- * @summary Russian grammar helpers
16
- */
17
- Rus: Code.Rus;
18
- }
19
- const Rus: Code.Rus;
20
- }