@formatjs/cli-lib 8.1.1 → 8.2.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@formatjs/cli-lib",
3
3
  "description": "Lib for CLI for formatjs.",
4
- "version": "8.1.1",
4
+ "version": "8.2.0",
5
5
  "license": "MIT",
6
6
  "author": "Linjie Ding <linjie@airtable.com>",
7
7
  "type": "module",
@@ -9,27 +9,27 @@
9
9
  "node": ">= 16"
10
10
  },
11
11
  "dependencies": {
12
- "@types/estree": "^1.0.6",
12
+ "@types/estree": "^1.0.8",
13
13
  "@types/fs-extra": "^11.0.4",
14
- "@types/node": "^22.0.0",
14
+ "@types/node": "^22.19.5",
15
15
  "chalk": "^4.1.2",
16
16
  "commander": "^14.0.0",
17
- "fast-glob": "^3.3.2",
18
- "fs-extra": "^11.2.0",
17
+ "fast-glob": "^3.3.3",
18
+ "fs-extra": "^11.3.3",
19
19
  "json-stable-stringify": "^1.3.0",
20
20
  "loud-rejection": "^2",
21
- "tslib": "^2.8.0",
21
+ "tslib": "^2.8.1",
22
22
  "typescript": "^5.6.0",
23
- "@formatjs/icu-messageformat-parser": "3.3.0",
24
- "@formatjs/icu-skeleton-parser": "2.0.8",
25
- "@formatjs/ts-transformer": "4.2.0"
23
+ "@formatjs/icu-messageformat-parser": "3.4.0",
24
+ "@formatjs/icu-skeleton-parser": "2.1.0",
25
+ "@formatjs/ts-transformer": "4.3.0"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@glimmer/syntax": "^0.95.0",
29
- "@vue/compiler-core": "^3.5.12",
30
- "content-tag": "4",
29
+ "@vue/compiler-core": "3.5.26",
30
+ "content-tag": "^4.1.0",
31
31
  "ember-template-recast": "^6.1.5",
32
- "vue": "^3.5.12"
32
+ "vue": "3.5.26"
33
33
  },
34
34
  "bugs": "https://github.com/formatjs/formatjs/issues",
35
35
  "homepage": "https://github.com/formatjs/formatjs",
@@ -1,7 +1,5 @@
1
1
  export declare const writeStderr: (arg1: string | Uint8Array) => Promise<void>;
2
2
  export declare const writeStdout: (arg1: string | Uint8Array) => Promise<void>;
3
- // From:
4
- // https://github.com/yarnpkg/yarn/blob/53d8004229f543f342833310d5af63a4b6e59c8a/src/reporters/console/util.js
5
3
  export declare function clearLine(terminal: (typeof process)["stderr"]): Promise<void>;
6
4
  export declare function debug(message: string, ...args: any[]): Promise<void>;
7
5
  export declare function warn(message: string, ...args: any[]): Promise<void>;