1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-16 13:44:31 +02:00

changed over locales to actual locale dirs

This commit is contained in:
Pomax
2017-03-05 18:33:44 -08:00
parent b034ef0145
commit 5d2dea6951
14 changed files with 975 additions and 120 deletions

View File

@@ -15,7 +15,7 @@ var target = "web";
// Bundle output
var output = {
path: __dirname,
path: path.join(__dirname,locale),
filename: 'article.js'
};
@@ -42,7 +42,7 @@ if (locale !== defaultLocale) {
LocalizedContent: path.resolve(__dirname, 'locales/' + locale + '/content.js')
}
};
output.filename = 'article.' + locale + '.js';
output.filename = 'article.js';
console.log("using " + resolve.alias.LocalizedContent + " for output " + output.filename);
}