@formatjs/cli 5.0.8 → 5.0.9
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 +162712 -0
- package/package.json +2 -2
- package/BUILD +0 -22
- package/CHANGELOG.md +0 -1098
- package/integration-tests/BUILD +0 -81
- package/integration-tests/compile/__snapshots__/integration.test.ts.snap +0 -1056
- package/integration-tests/compile/glob/en.json +0 -14
- package/integration-tests/compile/glob/en2.json +0 -14
- package/integration-tests/compile/glob-conflict/en.json +0 -14
- package/integration-tests/compile/glob-conflict/en2.json +0 -14
- package/integration-tests/compile/integration.test.ts +0 -213
- package/integration-tests/compile/lang/empty.json +0 -1
- package/integration-tests/compile/lang/en-crowdin.json +0 -14
- package/integration-tests/compile/lang/en-format.json +0 -14
- package/integration-tests/compile/lang/en-lokalise.json +0 -14
- package/integration-tests/compile/lang/en-simple.json +0 -5
- package/integration-tests/compile/lang/en-smartling.json +0 -24
- package/integration-tests/compile/lang/en-transifex.json +0 -14
- package/integration-tests/compile/lang/en.json +0 -22
- package/integration-tests/compile/lang/malformed-messages.json +0 -14
- package/integration-tests/compile_folder/__snapshots__/integration.test.ts.snap +0 -44
- package/integration-tests/compile_folder/integration.test.ts +0 -33
- package/integration-tests/compile_folder/lang/empty.json +0 -1
- package/integration-tests/compile_folder/lang/en.json +0 -14
- package/integration-tests/compile_folder/lang/en2.json +0 -14
- package/integration-tests/extract/__snapshots__/integration.test.ts.snap +0 -932
- package/integration-tests/extract/defineMessages/actual.ignore.js +0 -22
- package/integration-tests/extract/defineMessages/actual.js +0 -65
- package/integration-tests/extract/defineMessages/bad.json +0 -1
- package/integration-tests/extract/duplicated/file1.tsx +0 -10
- package/integration-tests/extract/duplicated/file2.tsx +0 -10
- package/integration-tests/extract/integration.test.ts +0 -240
- package/integration-tests/extract/nonDuplicated/file1.tsx +0 -14
- package/integration-tests/extract/nonDuplicated/file2.tsx +0 -14
- package/integration-tests/extract/typescript/actual.ignore.tsx +0 -21
- package/integration-tests/extract/typescript/actual.tsx +0 -104
- package/integration-tests/extract/typescript/err.tsx +0 -1
- package/integration-tests/extract/typescript/pragma.tsx +0 -77
- package/integration-tests/extract-vue/__snapshots__/integration.test.ts.snap +0 -17
- package/integration-tests/extract-vue/comp.vue +0 -22
- package/integration-tests/extract-vue/integration.test.ts +0 -14
- package/integration-tests/formatter.js +0 -18
- package/integration-tests/package.json +0 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/cli",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.9",
|
|
4
4
|
"description": "A CLI for formatjs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"intl",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"url": "https://github.com/formatjs/formatjs/issues"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@formatjs/cli-lib": "5.0.
|
|
36
|
+
"@formatjs/cli-lib": "5.0.8"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@vue/compiler-sfc": "^3.2.34"
|
package/BUILD
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
load("@aspect_rules_js//npm/private:npm_package.bzl", "npm_package")
|
|
2
|
-
|
|
3
|
-
PACKAGE_NAME = "cli"
|
|
4
|
-
|
|
5
|
-
genrule(
|
|
6
|
-
name = "bin",
|
|
7
|
-
srcs = ["//packages/cli-lib:formatjs.js"],
|
|
8
|
-
outs = ["bin/formatjs"],
|
|
9
|
-
cmd = "cp $< $@",
|
|
10
|
-
)
|
|
11
|
-
|
|
12
|
-
npm_package(
|
|
13
|
-
name = PACKAGE_NAME,
|
|
14
|
-
srcs = [
|
|
15
|
-
"LICENSE.md",
|
|
16
|
-
"README.md",
|
|
17
|
-
"package.json",
|
|
18
|
-
":bin/formatjs",
|
|
19
|
-
],
|
|
20
|
-
package = "@formatjs/%s" % PACKAGE_NAME,
|
|
21
|
-
visibility = ["//visibility:public"],
|
|
22
|
-
)
|