mirror of
https://github.com/elastic/kibana.git
synced 2025-04-20 16:03:20 -04:00
* [codeshift] add proper ignore comments
* use more descriptive file ignore pattern
* [codeshift] apply require-to-import transform
* [codeshift/fixup] remove duplicate imports
* [eslint] upgrade config for react "unused" support
(cherry picked from commit aa2bb174a3
)
* [eslint] remove no-unused-vars override
* [eslint] remove no-unused-vars override
* add eslint-plugin-react peerDependency
* [codeshift] apply remove-unused-basic-requires transform
* [codeshift] apply remove-unused-function-arguments transform
* [lintroller] fix argument list spacing
* [codeshift] apply remove-unused-basic-vars transform
* [codeshift/fixup] fixup unused basic var removals
* manually apply remove-unused-assignments transform
* [codeshift] reapply remove-unused-imports transform
* [codeshift] reapply remove-unused-function-arguments transform
* [resizeChecker] remove assignment to unused var
* [eslint] autofix param spacing
* manually fix remaining no-undef errors
* replace values that looked unused in tests
* remove // kibana-jscodeshift-no-babel comment
* remove import statements from code required by api tests
* Remove '// kibana-jscodeshift-ignore' comments
* address review feedback
* remove remnant of removed if condition
* [console] use * import for settings
20 lines
409 B
JavaScript
20 lines
409 B
JavaScript
export default function (grunt) {
|
|
const { sha, version } = grunt.config.get('build');
|
|
|
|
return {
|
|
options: {
|
|
bucket: 'download.elasticsearch.org',
|
|
access: 'private',
|
|
uploadConcurrency: 10
|
|
},
|
|
|
|
staging: {
|
|
files: [{
|
|
expand: true,
|
|
cwd: 'target',
|
|
src: ['**'],
|
|
dest: `kibana/staging/${version}-${sha.substr(0, 7)}/kibana/`
|
|
}]
|
|
}
|
|
};
|
|
}
|