Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iChenLei committed Aug 20, 2023
1 parent ea3229b commit e3f9a5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/less/test/browser/generator/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ function runSerial(tasks) {
Object.entries(config).forEach(entry => {
const test = entry[1]
console.log(`test.src: `, test.src);
console.log(`test.src after: `, test.src.map((path) => path.normalize(path)));
const paths = globby.sync(test.src.map((path) => path.normalize(path)));
console.log(`test.src after: `, test.src.map((p) => path.normalize(p)));
const paths = globby.sync(test.src.map((p) => path.normalize(p)));
const templateString = template(paths, test.options.helpers, test.options.specs)
console.log(`paths: `, paths);
console.log(`${test.options.outfile}: `, templateString);
Expand Down

0 comments on commit e3f9a5e

Please sign in to comment.