@formatjs/cli 2.14.0 → 2.15.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formatjs/cli",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "A CLI for formatjs.",
5
5
  "keywords": [
6
6
  "intl",
package/src/cli.js CHANGED
@@ -28,7 +28,7 @@ function main(argv) {
28
28
  .description('Show this help message.')
29
29
  .action(function () { return commander_1.default.help(); });
30
30
  // Long text wrapping to available terminal columns: https://github.com/tj/commander.js/pull/956
31
- // NOTE: please keep the help text in sync with babel-plugin-react-intl documentation.
31
+ // NOTE: please keep the help text in sync with babel-plugin-formatjs documentation.
32
32
  commander_1.default
33
33
  .command('extract [files...]')
34
34
  .description("Extract string messages from React components that use react-intl.\nThe input language is expected to be TypeScript or ES2017 with JSX.")