mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
e4d492fd35
* Explore: Create basic E2E test * Feature: adds e2e tests for panel inspector * Refactor: adds ts-ignore because of type checking errors * Refactor: changes after PR comments and updates snapshot * Refactor: adds typings back for IScope * Refactor: changes after PR comments Co-authored-by: Andreas Opferkuch <andreas.opferkuch@gmail.com>
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./index.production.js');
|
|
} else {
|
|
module.exports = require('./index.development.js');
|
|
}
|