| 3 | const getWorkspaces = require('../../../lib/utils/get-workspaces.js') |
| 4 | |
| 5 | const normalizePath = p => p |
| 6 | .replace(/\\+/g, '/') |
| 7 | .replace(/\r\n/g, '\n') |
| 8 | |
| 9 | const cleanOutput = (str, path) => normalizePath(str) |
| 10 | .replace(normalizePath(path), '{PATH}') |