fixing issue where grunt wouldn't read js from file properly if nodebb wasn't run in production mode at least once

v1.18.x
Julian Lam 10 years ago
parent 6059165a54
commit 5d7b46935d

@ -209,18 +209,25 @@ module.exports = function(Meta) {
Meta.js.getFromFile = function(minify, callback) {
var scriptPath = path.join(__dirname, '../../public/nodebb.min.js'),
mapPath = path.join(__dirname, '../../public/nodebb.min.js.map');
mapPath = path.join(__dirname, '../../public/nodebb.min.js.map'),
paths = [scriptPath];
fs.exists(scriptPath, function(exists) {
if (exists) {
if (nconf.get('isPrimary') === 'true') {
fs.exists(mapPath, function(exists) {
if (exists) {
paths.push(mapPath);
}
winston.verbose('[meta/js] Reading client-side scripts from file');
async.map([scriptPath, mapPath], fs.readFile, function(err, files) {
async.map(paths, fs.readFile, function(err, files) {
Meta.js.cache = files[0];
Meta.js.map = files[1];
Meta.js.map = files[1] || '';
emitter.emit('meta:js.compiled');
callback();
});
});
} else {
callback();
}

Loading…
Cancel
Save