mirror of https://github.com/embarklabs/embark.git
display error & warning when choosing an unexistant file
This commit is contained in:
parent
4b8a353720
commit
ae28df8f8e
|
@ -109,6 +109,10 @@ class Pipeline {
|
|||
}
|
||||
|
||||
], function(_err, _result) {
|
||||
if (!fs.existsSync('./.embark/' + file.filename)) {
|
||||
self.logger.error("coudln't find file: " + file.filename);
|
||||
return fileCb("couldn't find file: " + file.filename);
|
||||
}
|
||||
let fileContent = fs.readFileSync('./.embark/' + file.filename).toString();
|
||||
fileCb(null, {content: fileContent, filename: file.filename, path: file.path, modified: true});
|
||||
});
|
||||
|
@ -121,6 +125,9 @@ class Pipeline {
|
|||
|
||||
},
|
||||
function (err, contentFiles) {
|
||||
if (err) {
|
||||
self.logger.warn('errors found while generating ' + targetFile);
|
||||
}
|
||||
let dir = targetFile.split('/').slice(0, -1).join('/');
|
||||
self.logger.trace("creating dir " + self.buildDir + dir);
|
||||
fs.mkdirpSync(self.buildDir + dir);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"css/app.css": ["app/css/**"],
|
||||
"images/": ["app/images/**"],
|
||||
"js/app.js": ["app/js/index.js"],
|
||||
"js/test.js": ["app/js/_vendor/jquery.min.js", "app/js/_vendor/async.min.js", "app/js/test.js"],
|
||||
"js/test.js": ["app/js/_vendor/jquery.min.js", "app/js/_vendor/async.min.js", "app/js/test.js", "app/js/non_existant_file.js"],
|
||||
"index.html": "app/index.html",
|
||||
"test.html": "app/test.html",
|
||||
"test2.html": "app/test2.html"
|
||||
|
|
Loading…
Reference in New Issue