@kununu/phraseapp-cli 4.0.3-beta.1 → 4.0.3-beta.2

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.
@@ -20,6 +20,9 @@ const POSSIBLE_DYNAMIC_KEYS_FILE = `${FOLDER_REPORT_CHECK_TRANSLATIONS}/possible
20
20
  function extractTranslationKeys() {
21
21
  const files = sync(
22
22
  `${process.cwd()}/${process.env.SOURCE_DIR}/**/**/*.{js,jsx,ts,tsx}`,
23
+ {
24
+ ignore: [`**/*.spec.{js,jsx,ts,tsx}`],
25
+ }
23
26
  );
24
27
  const keys = new Set();
25
28
  const possibleDynamicKeys = {};
package/index.js CHANGED
@@ -6,6 +6,8 @@ const fs = require('fs');
6
6
 
7
7
  require('dotenv').config();
8
8
 
9
+ const colors = require('colors'); // eslint-disable-line no-unused-vars
10
+
9
11
  /**
10
12
  * Splits array into smaller chunks
11
13
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kununu/phraseapp-cli",
3
- "version": "4.0.3-beta.1",
3
+ "version": "4.0.3-beta.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "kununu",