@automattic/babel-plugin-replace-textdomain
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -8,2 +8,6 @@ # Changelog | ||
## [1.0.8] - 2022-06-08 | ||
### Changed | ||
- Reorder JS imports for `import/order` eslint rule. [#24601] | ||
## [1.0.7] - 2022-05-10 | ||
@@ -46,2 +50,3 @@ ### Changed | ||
[1.0.8]: https://github.com/Automattic/babel-plugin-replace-textdomain/compare/v1.0.7...v1.0.8 | ||
[1.0.7]: https://github.com/Automattic/babel-plugin-replace-textdomain/compare/v1.0.6...v1.0.7 | ||
@@ -48,0 +53,0 @@ [1.0.6]: https://github.com/Automattic/babel-plugin-replace-textdomain/compare/v1.0.5...v1.0.6 |
{ | ||
"name": "@automattic/babel-plugin-replace-textdomain", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "A Babel plugin to replace the textdomain in gettext-style function calls.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/babel-plugin-replace-textdomain/#readme", |
const pluginName = require( '../package.json' ).name; | ||
const debug = require( 'debug' )( pluginName ); | ||
const debug = require( 'debug' )( pluginName ); // eslint-disable-line import/order | ||
@@ -4,0 +4,0 @@ const defaultFunctions = Object.freeze( { |
29168