You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
400 B
20 lines
400 B
import getFiles from './get-files';
|
|
import { resolve } from 'path';
|
|
|
|
getFiles(resolve('../mng-test/files-in-package'))
|
|
.then(files => {
|
|
console.log(files);
|
|
|
|
getFiles(resolve('../mng-test/files-in-package-ignore'))
|
|
.then(files2 => {
|
|
console.log('ignored: ');
|
|
console.log(files2);
|
|
})
|
|
.catch(err => {
|
|
console.log(err.stack);
|
|
});
|
|
})
|
|
.catch(err => {
|
|
console.log(err.stack);
|
|
});
|
|
|
|
|