-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
In CLI mode tartifacts should log warn messages about broken symlinks and mismatching patterns.
By API
const tartifacts = require('tartifacts');
tartifacts({ dest: 'dir', includes: ['no-file.ext', 'broken.symlink'] })
.then({ warnings } => {
console.log(warnings);
});
// [
// {
// path: 'path/to/no-file.ext',
// message: 'File not found.'
// },
// {
// path: 'broken.symlink',
// message: 'Symlink is broken.'
// },
//]Metadata
Metadata
Assignees
Labels
No labels