mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[rename] Ui** -> ui_**
This commit is contained in:
parent
58d6137fdd
commit
1b8c412eeb
9 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
import expect from 'expect.js';
|
||||
|
||||
import UiExports from '../UiExports';
|
||||
import UiExports from '../ui_exports';
|
||||
|
||||
describe('UiExports', function () {
|
||||
describe('#find()', function () {
|
||||
|
|
|
@ -6,10 +6,10 @@ module.exports = async (kbnServer, server, config) => {
|
|||
let readFile = require('fs').readFileSync;
|
||||
|
||||
let fromRoot = require('../utils/fromRoot');
|
||||
let UiExports = require('./UiExports');
|
||||
let UiBundle = require('./UiBundle');
|
||||
let UiBundleCollection = require('./UiBundleCollection');
|
||||
let UiBundlerEnv = require('./UiBundlerEnv');
|
||||
let UiExports = require('./ui_exports');
|
||||
let UiBundle = require('./ui_bundle');
|
||||
let UiBundleCollection = require('./ui_bundle_collection');
|
||||
let UiBundlerEnv = require('./ui_bundler_env');
|
||||
let loadingGif = readFile(fromRoot('src/ui/public/loading.gif'), { encoding: 'base64'});
|
||||
|
||||
let uiExports = kbnServer.uiExports = new UiExports({
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
let _ = require('lodash');
|
||||
let UiApp = require('./UiApp');
|
||||
let UiApp = require('./ui_app');
|
||||
let Collection = require('requirefrom')('src')('utils/Collection');
|
||||
|
||||
let byIdCache = Symbol('byId');
|
|
@ -8,8 +8,8 @@ let unlink = promisify(require('fs').unlink);
|
|||
let readdir = promisify(require('fs').readdir);
|
||||
let readSync = require('fs').readFileSync;
|
||||
|
||||
let UiBundle = require('./UiBundle');
|
||||
let appEntryTemplate = require('./appEntryTemplate');
|
||||
let UiBundle = require('./ui_bundle');
|
||||
let appEntryTemplate = require('./app_entry_template');
|
||||
|
||||
class UiBundleCollection {
|
||||
constructor(bundlerEnv, filter) {
|
|
@ -1,7 +1,7 @@
|
|||
var _ = require('lodash');
|
||||
var minimatch = require('minimatch');
|
||||
|
||||
var UiAppCollection = require('./UiAppCollection');
|
||||
var UiAppCollection = require('./ui_app_collection');
|
||||
|
||||
class UiExports {
|
||||
constructor({ urlBasePath }) {
|
Loading…
Add table
Add a link
Reference in a new issue