mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
* Switch to Yarn (#15485) * switch to yarn * cleanup misc references to npm * [yarn] loosen dependency ranges so yarn will merge more deps * fix linting error now that moment uses ESM * [licenses] font-awesome changed the format of its license id * Use local yarn * Misc fixes * eslintignore built yarn file * Remove mkdir which doesn't do what it should do * Check build without upgrading lots of versions * Fix license check * too many moments * Better description * Review fixes * Lock to angular@1.6.5 * More specific version locks * Revert "More specific version locks" This reverts commit11ef81102e
. * Revert "Lock to angular@1.6.5" This reverts commit3ade68c14c
. * rm yarn.lock; yarn * Forcing a specific version of React, Angular, Moment * Using vendored version of yarn in ci * Use --frozen-lockfile * fixes * Update lockfile
35 lines
1,007 B
JavaScript
35 lines
1,007 B
JavaScript
import { flatten } from 'lodash';
|
|
module.exports = function (grunt) {
|
|
grunt.registerTask('build', 'Build packages', function () {
|
|
grunt.task.run(flatten([
|
|
'clean:build',
|
|
'clean:target',
|
|
'_build:downloadNodeBuilds',
|
|
'_build:extractNodeBuilds',
|
|
'copy:devSource',
|
|
'clean:devSourceForTestbed',
|
|
'babel:build',
|
|
'_build:plugins',
|
|
'_build:data',
|
|
'_build:verifyTranslations',
|
|
'_build:packageJson',
|
|
'_build:readme',
|
|
'_build:babelCache',
|
|
'_build:installDependencies',
|
|
'_build:notice',
|
|
'_build:removePkgJsonDeps',
|
|
'clean:testsFromModules',
|
|
'clean:examplesFromModules',
|
|
'run:optimizeBuild',
|
|
'stop:optimizeBuild',
|
|
'_build:versionedLinks',
|
|
'_build:osShellScripts',
|
|
grunt.option('skip-archives') ? [] : ['_build:archives'],
|
|
grunt.option('skip-os-packages') ? [] : [
|
|
'_build:pleaseRun',
|
|
'_build:osPackages',
|
|
],
|
|
'_build:shasums'
|
|
]));
|
|
});
|
|
};
|