Skip to content

Commit bda74aa

Browse files
committed
Merge remote-tracking branch 'origin/master' into feature/merge-code
2 parents 1c79c1b + 66db7ba commit bda74aa

File tree

192 files changed

+1868
-770
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+1868
-770
lines changed

docs/api/saved-objects/bulk_get.asciidoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ contains the following properties:
2323
`id` (required)::
2424
(string) ID of object to retrieve
2525

26+
`fields` (optional)::
27+
(array) The fields to return in the object's response
28+
2629
==== Response body
2730

2831
The response body will have a top level `saved_objects` property that contains

packages/kbn-interpreter/public/package.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/kbn-interpreter/server/package.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/kbn-interpreter/src/common/index.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,10 @@
1717
* under the License.
1818
*/
1919

20-
export { FunctionsRegistry } from './lib/functions_registry';
21-
export { TypesRegistry } from './lib/types_registry';
22-
export { createError } from './interpreter/create_error';
23-
export { interpreterProvider } from './interpreter/interpret';
24-
export { serializeProvider } from './lib/serialize';
2520
export { fromExpression, toExpression, safeElementFromExpression } from './lib/ast';
2621
export { Fn } from './lib/fn';
2722
export { getType } from './lib/get_type';
28-
export { castProvider } from './interpreter/cast';
23+
export { castProvider } from './lib/cast';
2924
export { parse } from './lib/grammar';
3025
export { getByAlias } from './lib/get_by_alias';
3126
export { Registry } from './lib/registry';

packages/kbn-interpreter/src/public/index.js

Lines changed: 0 additions & 28 deletions
This file was deleted.

packages/kbn-interpreter/src/public/registries.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

packages/kbn-interpreter/tasks/build/cli.js

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const { ToolingLog, withProcRunner, pickLevelFromFlags } = require('@kbn/dev-uti
2727
const {
2828
ROOT_DIR,
2929
BUILD_DIR,
30-
WEBPACK_CONFIG_PATH
3130
} = require('./paths');
3231

3332
const unknownFlags = [];
@@ -75,7 +74,7 @@ withProcRunner(log, async (proc) => {
7574
env.FORCE_COLOR = 'true';
7675
}
7776

78-
log.info(`Starting babel and webpack${flags.watch ? ' in watch mode' : ''}`);
77+
log.info(`Starting babel ${flags.watch ? ' in watch mode' : ''}`);
7978
await Promise.all([
8079
proc.run('babel ', {
8180
cmd: 'babel',
@@ -91,18 +90,6 @@ withProcRunner(log, async (proc) => {
9190
env,
9291
cwd
9392
}),
94-
95-
proc.run('webpack', {
96-
cmd: 'webpack',
97-
args: [
98-
'--config', relative(cwd, WEBPACK_CONFIG_PATH),
99-
'--env.sourceMaps', String(Boolean(flags.dev)),
100-
...(flags.watch ? ['--watch'] : []),
101-
],
102-
wait: true,
103-
env,
104-
cwd
105-
}),
10693
]);
10794

10895
log.success('Complete');

packages/kbn-interpreter/tasks/build/paths.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,5 @@ exports.ROOT_DIR = resolve(__dirname, '../../');
2323
exports.SOURCE_DIR = resolve(exports.ROOT_DIR, 'src');
2424
exports.BUILD_DIR = resolve(exports.ROOT_DIR, 'target');
2525

26-
exports.PLUGIN_SOURCE_DIR = resolve(exports.SOURCE_DIR, 'plugin');
27-
exports.PLUGIN_BUILD_DIR = resolve(exports.BUILD_DIR, 'canvas_plugin');
28-
29-
exports.WEBPACK_CONFIG_PATH = require.resolve('./webpack.config');
3026
exports.BABEL_PRESET_PATH = require.resolve('@kbn/babel-preset/webpack_preset');
3127

packages/kbn-interpreter/tasks/build/webpack.config.js

Lines changed: 0 additions & 135 deletions
This file was deleted.

0 commit comments

Comments
 (0)