@cerner/terra-aggregate-translations
Advanced tools
Comparing version 3.3.0 to 3.4.0
@@ -5,6 +5,14 @@ # Changelog | ||
## 3.4.0 - (May 1, 2024) | ||
* Changes | ||
* Dropped support for overriding supported locales list with a custom list due to breaking changes in `react-intl@5` & webpack limitations. Terra will now only support a fixed list of locales. | ||
* Dropped suport for Node 10 & 12. Node 14 is now the minimum required version required. | ||
*Note: While these changes are typically breaking changes, terra-aggregate-translations v3.x has not been deployed to production so far. Therefore, these changes are passive in nature.* | ||
## 3.3.0 - (September 26, 2023) | ||
* Changed | ||
* Minor dependency version bump | ||
* Minor dependency version bump. | ||
@@ -14,3 +22,3 @@ ## 3.2.0 - (August 31, 2023) | ||
* Changed | ||
* Minor dependency version bump | ||
* Minor dependency version bump. | ||
@@ -20,3 +28,3 @@ ## 3.1.2 - (August 30, 2023) | ||
* Changed | ||
* Minor dependency version bump | ||
* Minor dependency version bump. | ||
@@ -32,9 +40,11 @@ ## 3.1.1 - (August 25, 2023) | ||
* Changed | ||
* Minor dependency version bump | ||
* Minor dependency version bump. | ||
## 3.0.0 - (May 12, 2022) | ||
* Breaking | ||
* Removed intl v3 and v4 support. | ||
* Breaking Changes | ||
* Removed react-intl v3 and v4 support. | ||
--- | ||
## 2.4.0 - (February 11, 2022) | ||
@@ -41,0 +51,0 @@ |
@@ -35,3 +35,3 @@ "use strict"; | ||
fileSystem: options.outputFileSystem || config.outputFileSystem || fse, | ||
locales: options.locales || config.locales || supportedLocales, | ||
locales: supportedLocales, | ||
outputDir: options.outputDir || './aggregated-translations', | ||
@@ -38,0 +38,0 @@ excludes: options.excludes || config.excludes || [], |
{ | ||
"name": "@cerner/terra-aggregate-translations", | ||
"version": "3.3.0", | ||
"version": "3.4.0", | ||
"description": "The terra-aggregate-translations pre-build tool assists with creating the translation, intl loader and translation loader files that are configured for the specified locales. This tool is offered as a CLI script and as a setup function.", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"engines": { | ||
"node": "10|| 12 || 14", | ||
"npm": "6 || 9" | ||
}, | ||
"author": "Cerner Corporation", | ||
"repository": { | ||
@@ -17,33 +11,28 @@ "type": "git", | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/cerner/terra-toolkit/issues" | ||
}, | ||
"homepage": "https://github.com/cerner/terra-toolkit/packages/terra-aggregate-translations#readme", | ||
"license": "Apache-2.0", | ||
"keywords": [ | ||
"Cerner", | ||
"i18n", | ||
"intl", | ||
"react", | ||
"react-intl", | ||
"Terra", | ||
"terra-aggregate-translations", | ||
"translations", | ||
"react", | ||
"react-intl", | ||
"i18n", | ||
"intl" | ||
"translations" | ||
], | ||
"author": "Cerner Corporation", | ||
"license": "Apache-2.0", | ||
"homepage": "https://github.com/cerner/terra-toolkit/packages/terra-aggregate-translations#readme", | ||
"bugs": { | ||
"url": "https://github.com/cerner/terra-toolkit/issues" | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"engines": { | ||
"node": "14", | ||
"npm": "6 || 9" | ||
}, | ||
"main": "lib/aggregate-translations.js", | ||
"bin": { | ||
"tt-aggregate-translations": "bin/aggregate-translations-cli.js" | ||
}, | ||
"main": "lib/aggregate-translations.js", | ||
"scripts": { | ||
"clean": "npm run clean:node_modules && npm run clean:lib", | ||
"clean:lib": "rm -rf lib", | ||
"clean:node_modules": "echo 'removing ./node_modules' && rm -rf node_modules && echo 'removed ./node_modules'", | ||
"clean:install": "npm run clean && time npm install", | ||
"compile": "babel --root-mode upward src --out-dir lib --copy-files", | ||
"jest": "jest", | ||
"lint": "eslint --ext .js,.jsx . --ignore-path ../../.eslintignore", | ||
"lint:js:fix": "eslint --ext .js,.jsx . --fix --ignore-path ../../.eslintignore", | ||
"test": "npm run lint && npm run jest" | ||
}, | ||
"dependencies": { | ||
@@ -56,2 +45,6 @@ "chalk": "^2.4.2", | ||
}, | ||
"peerDependencies": { | ||
"intl": "^1.2.5", | ||
"react-intl": "^5.8.2" | ||
}, | ||
"devDependencies": { | ||
@@ -64,7 +57,14 @@ "@babel/cli": "^7.10.5", | ||
}, | ||
"peerDependencies": { | ||
"intl": "^1.2.5", | ||
"react-intl": "^5.8.2" | ||
"scripts": { | ||
"clean": "npm run clean:node_modules && npm run clean:lib", | ||
"clean:lib": "rm -rf lib", | ||
"clean:node_modules": "echo 'removing ./node_modules' && rm -rf node_modules && echo 'removed ./node_modules'", | ||
"clean:install": "npm run clean && time npm install", | ||
"compile": "babel --root-mode upward src --out-dir lib --copy-files", | ||
"jest": "jest", | ||
"lint": "eslint --ext .js,.jsx . --ignore-path ../../.eslintignore", | ||
"lint:js:fix": "eslint --ext .js,.jsx . --fix --ignore-path ../../.eslintignore", | ||
"test": "npm run lint && npm run jest" | ||
}, | ||
"gitHead": "4bf2bb015cd1b3f4a48229cffea50cf67a582c09" | ||
"gitHead": "a62b920c7539f2d2acc66c0ae67c37557791da70" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43663