From 5fe8dc5ac35b1bda4323c99ff638542c500b171f Mon Sep 17 00:00:00 2001 From: Sylvester Date: Tue, 23 Feb 2021 09:34:31 +0100 Subject: [PATCH] fix: remove console log --- package.json | 2 +- src/helpers/build-sections.ts | 1 - src/index.ts | 2 -- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index a157ee4..66eb243 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@utilitycss/utility", - "version": "1.0.1", + "version": "1.0.2", "description": "Generator for Utility CSS frameworks", "author": "Andrea Moretti (@axyz) ", "repository": "utilitycss/utility", diff --git a/src/helpers/build-sections.ts b/src/helpers/build-sections.ts index b2d3363..9aca0e3 100644 --- a/src/helpers/build-sections.ts +++ b/src/helpers/build-sections.ts @@ -32,7 +32,6 @@ export default async function buildSections({ const moduleName = module[0].toUpperCase() + module.slice(1); const rules: Rule[] = []; modules[module].forEach((rule) => { - // console.log(JSON.stringify(rule)); const { nodes, selector, media } = rule; if (/^\.[A-Za-z0-9\-\:\_]+$/.test(selector)) { rules.push({ diff --git a/src/index.ts b/src/index.ts index 75c4674..031b0c0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -62,8 +62,6 @@ function utilityPlugin(config?: PluginConfig) { ? path.join(sourceDirname, moduleConfigFile) : ""; - console.log(modulePath, moduleName, path.resolve(modulePath)); - /** * Exit if the module name or * the provided module name is not supported