Skip to content

Commit

Permalink
Apply path.normalize to globby output
Browse files Browse the repository at this point in the history
  • Loading branch information
sergesemashko committed Feb 25, 2017
1 parent 01c7fcf commit bfce140
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions lib/__tests__/standalone-cache.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ describe("standalone cache", () => {
return fsExtra.readJson(expectedCacheFilePath)
}).then(cacheFile => {
// Ensure cache file contains only linted css file
console.log(cacheFile)
console.log(validFile)
expect(typeof cacheFile[validFile] === "object").toBe(true)
expect(typeof cacheFile[newFileDest] === "undefined").toBe(true)
})
Expand Down
1 change: 0 additions & 1 deletion lib/standalone.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ module.exports = function (options/*: Object */)/*: Promise<stylelint$standalone
const absoluteFilepath = (!path.isAbsolute(filePath))
? path.join(process.cwd(), filePath)
: path.normalize(filePath)
console.log(absoluteFilepath)
return absoluteFilepath
})

Expand Down

0 comments on commit bfce140

Please sign in to comment.