@formatjs/cli 6.3.11 → 6.3.12
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/bin/formatjs +1 -1
- package/package.json +6 -6
package/bin/formatjs
CHANGED
|
@@ -227638,7 +227638,7 @@ __export(gts_extractor_exports, {
|
|
|
227638
227638
|
function parseFile3(source, fileName, options) {
|
|
227639
227639
|
const scriptParseFn = parseScript(options, fileName);
|
|
227640
227640
|
const transformedSource = p.process(source, { filename: fileName });
|
|
227641
|
-
scriptParseFn(transformedSource);
|
|
227641
|
+
scriptParseFn(transformedSource.code);
|
|
227642
227642
|
const parseResult = p.parse(source, { filename: fileName });
|
|
227643
227643
|
for (let parsed of parseResult) {
|
|
227644
227644
|
parseFile2(parsed.contents, fileName, options);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/cli",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.12",
|
|
4
4
|
"description": "A CLI for formatjs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"intl",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"url": "https://github.com/formatjs/formatjs/issues"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@formatjs/cli-lib": "
|
|
36
|
+
"@formatjs/cli-lib": "7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@glimmer/env": "^0.1.7",
|
|
40
|
-
"@glimmer/reference": "^0.91.1 || ^0.92.0",
|
|
41
|
-
"@glimmer/syntax": "^0.92.0",
|
|
42
|
-
"@glimmer/validator": "^0.92.0",
|
|
40
|
+
"@glimmer/reference": "^0.91.1 || ^0.92.0 || ^0.93.0",
|
|
41
|
+
"@glimmer/syntax": "^0.92.0 || ^0.93.0",
|
|
42
|
+
"@glimmer/validator": "^0.92.0 || ^0.93.0",
|
|
43
43
|
"@vue/compiler-core": "^3.4.0",
|
|
44
|
-
"content-tag": "^2.0.1",
|
|
44
|
+
"content-tag": "^2.0.1 || ^3.0.0",
|
|
45
45
|
"ember-template-recast": "^6.1.4",
|
|
46
46
|
"vue": "^3.4.0"
|
|
47
47
|
},
|