@awsless/i18n 0.0.3 → 0.0.4
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/dist/index.cjs +0 -1
- package/dist/index.js +0 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -221,7 +221,6 @@ var createI18nPlugin = (props) => {
|
|
|
221
221
|
transform(code) {
|
|
222
222
|
let replaced = false;
|
|
223
223
|
if (code.includes(`$t\``)) {
|
|
224
|
-
console.log(cache);
|
|
225
224
|
for (const item of cache.entries()) {
|
|
226
225
|
code = code.replaceAll(`$t\`${item.original}\``, () => {
|
|
227
226
|
replaced = true;
|
package/dist/index.js
CHANGED
|
@@ -183,7 +183,6 @@ var createI18nPlugin = (props) => {
|
|
|
183
183
|
transform(code) {
|
|
184
184
|
let replaced = false;
|
|
185
185
|
if (code.includes(`$t\``)) {
|
|
186
|
-
console.log(cache);
|
|
187
186
|
for (const item of cache.entries()) {
|
|
188
187
|
code = code.replaceAll(`$t\`${item.original}\``, () => {
|
|
189
188
|
replaced = true;
|