Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 322080b

Browse files
author
xavier.ternisien
committed
remove console.log
1 parent 0631ff6 commit 322080b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/pattern-lab--php-twig.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ module.exports = (gulp, config, tasks) => {
4242
if (config.patternLab.injectFiles) {
4343
sources = sources.concat(config.patternLab.injectFiles);
4444
}
45-
console.log(config.js.dest);
4645
sources = sources.concat(glob.sync(path.normalize(`${config.js.dest}/*.js`)));
4746
sources = sources.concat(glob.sync(path.normalize(`${config.css.dest}/*.css`)));
4847
// We need to make sure our JS deps like jQuery are loaded before ours (`config.js.destName`)
@@ -77,7 +76,6 @@ module.exports = (gulp, config, tasks) => {
7776
function scssToJson(done) {
7877
config.patternLab.scssToJson.forEach((pair) => {
7978
const scssVarList = _.filter(fs.readFileSync(pair.src, 'utf8').split('\n'), item => _.startsWith(item, pair.lineStartsWith));
80-
// console.log(scssVarList, item.src);
8179
let varsAndValues = _.map(scssVarList, (item) => {
8280
// assuming `item` is `$color-gray: hsl(0, 0%, 50%); // main gray color`
8381
const x = item.split(':');

0 commit comments

Comments
 (0)