David Fox-Powell
David Fox-Powell
https://github.com/build-boiler/build-boiler/blob/master/packages/boiler-config-babelrc/node-6.json
Yup this didn't get compiled to `lib` and there is no `1.0.1` release tag on the repo..confusing
@EiddleChen just remove the `^` in front of your dependency so you are locked at `1.0.0`
Yes would be great to get this updated as we are having to move away from this package due to Snyk alerts
@jeremygaither did you ever figure out a workaround for this?
#### Update So it looks like from minimal investigation into the code that volumes are split on a newline rather than a space as it suggests in the docs https://github.com/jenkinsci/docker-plugin/blob/master/docker-plugin/src/main/java/com/nirima/jenkins/plugins/docker/DockerTemplateBase.java#L144...
@aleclarson looks like I'm getting this error when just trying to run `gulp` without `babel` ``` devtool `which gulp` ```
same issue..didn't update anything. everything starts freezing as soon as I open a new pane. can confirm that @idonchu and @hurricanehrndz fix worked for me
It seems counterintuitive that overrides would not work for workspaces because I was under the impression that workspaces can be used as a feature to coordinate a monorepo containing multiple...
I'm struggling with this as well trying to do a negative lookahead. ```js const matcher = require('wildcard-match'); const globs = [ '**/*.jsx', '**/*.js', '(?!dont-match/)/**/*', ]; const match = matcher(globs) console.log(match.regexp)...