We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf70f33 commit eb3ea5fCopy full SHA for eb3ea5f
src/index.ts
@@ -145,7 +145,7 @@ export class CMTD {
145
}
146
147
)
148
- .catch(err => { this.logger.error(`{CMTD!} ${err} ${JSON.stringify(err)}`); this.logger.info(err.stack); });
+ .catch(err => { this.logger.error(`{CMTD} ${err} ${JSON.stringify(err)}`); });
149
150
);
151
src/parser.ts
@@ -13,7 +13,6 @@ export async function parser(
13
if(config === undefined) {
14
config = cosmiconfigSync('postcss').search()?.config ?? {};
15
16
- console.log(config);
17
18
const importer = require('postcss-import')(config.plugins['postcss-import']) as AcceptedPlugin;
19
const localByDefault = require('postcss-modules-local-by-default') as AcceptedPlugin;
0 commit comments