Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvesteraswin committed Feb 23, 2021
1 parent 3620bbf commit 5fe8dc5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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) <[email protected]>",
"repository": "utilitycss/utility",
Expand Down
1 change: 0 additions & 1 deletion src/helpers/build-sections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5fe8dc5

Please sign in to comment.