Selaa lähdekoodia

Add parameter 'l10nCompiled' in start script to force usage of compiled l10n bundle

tags/7.5
Grégoire Aubert 6 vuotta sitten
vanhempi
commit
9c92074517
1 muutettua tiedostoa jossa 10 lisäystä ja 6 poistoa
  1. 10
    6
      server/sonar-web/scripts/start.js

+ 10
- 6
server/sonar-web/scripts/start.js Näytä tiedosto

@@ -37,8 +37,10 @@ const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
const host = process.env.HOST || 'localhost';
const proxy = process.env.PROXY || 'http://localhost:9000';

const compiler = setupCompiler(host, port, protocol);
// Force start script to proxy l10n request to the server (can be useful when working with plugins/extensions)
const l10nCompiledFlag = process.argv.findIndex(val => val === 'l10nCompiled') >= 0;

const compiler = setupCompiler(host, port, protocol);
runDevServer(compiler, host, port, protocol);

function setupCompiler(host, port, protocol) {
@@ -82,11 +84,13 @@ function runDevServer(compiler, host, port, protocol) {
const devServer = new WebpackDevServer(compiler, {
before(app) {
app.use(errorOverlayMiddleware());
app.get('/api/l10n/index', (req, res) => {
getMessages()
.then(messages => res.json({ effectiveLocale: 'en', messages }))
.catch(() => res.status(500));
});
if (!l10nCompiledFlag) {
app.get('/api/l10n/index', (req, res) => {
getMessages()
.then(messages => res.json({ effectiveLocale: 'en', messages }))
.catch(() => res.status(500));
});
}
},
compress: true,
clientLogLevel: 'none',

Loading…
Peruuta
Tallenna