From 67fc201de056f842d6e9ec7229290585ce98af9c Mon Sep 17 00:00:00 2001 From: arnef Date: Mon, 2 May 2022 15:44:11 +0200 Subject: [PATCH] chore: remove console.log --- index.ts | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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",