-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moves glob to devDependencies #198589
Moves glob to devDependencies #198589
Conversation
Pinging @elastic/kibana-security (Team:Security) |
@@ -28,7 +28,9 @@ export default function (directory) { | |||
); | |||
|
|||
// Get a list of all directories with an index.js, use the directory name as the key in the object | |||
const directories = _.chain(glob.sync(path.resolve(__dirname, '../' + directory + '/*/index.js'))) | |||
const directories = _.chain( | |||
globby.sync(path.resolve(__dirname, '../' + directory + '/*/index.js')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a tricky one previously, sorry for leaving the backport unaddressed.
d719c89 was needed for it to functions on Windows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @jbudz! I was wondering about that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in 2afa705
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you @jeramysoucy for taking a look into this!
src/plugins/console/server/services/spec_definitions_service.ts
Outdated
Show resolved
Hide resolved
💚 Build Succeeded
Metrics [docs]
History
|
Summary
Moves
glob
dependencies to devDependencies.