diff --git a/index.ts b/index.ts index a27215d..6b2ac97 100644 --- a/index.ts +++ b/index.ts @@ -5,7 +5,6 @@ export default function PoLoader() { name: 'po-loader', async transform(source: string, id: string) { const poRegEx = /\.po$/; - console.log(id); if (poRegEx.test(id)) { const match = source.match(/Language: (\w+)/) const lang = match ? match[1] : 'en'; diff --git a/package.json b/package.json index d126c2d..9d7aa73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@arnef/vite-plugin-gettext-loader", - "version": "1.0.1", + "version": "1.0.2", "main": "dist/index.js", "types": "dist/index.d.ts", "license": "MIT",