Implemented scripts for building and releasing grafana/ui

This commit is contained in:
Dominik Prokop
2019-02-21 10:58:28 +01:00
parent 72e269c8f3
commit 529c1ea53d
17 changed files with 684 additions and 44 deletions

View File

@@ -0,0 +1,7 @@
'use strict'
if (process.env.NODE_ENV === 'production') {
module.exports = require('./index.production.js');
} else {
module.exports = require('./index.development.js');
}