Ian Brown

Results 21 comments of Ian Brown

I have an error that I believe is related when using the Vue 2.6 build tools. I see a message in the console "This dependency was not found" with the...

@petemounce did you solve this or find a workaround?

Ok, I've spotted the issue, the mapping is in the Linux style for the volumes, ie: ``` docker run -i --rm --volume C:\\buildkite-agent\\builds\\build-windows\\app:c:\\app --workdir c:\\app --volume /c/buildkite-agent/bin/buildkite-agent:/usr/bin/buildkite-agent --label com.buildkite.job-id=some-id mcr.microsoft.com/windows:1809-amd64...

Thanks @petemounce, that worked for me too. I also added the necessary env tokens: ``` - label: "Create package" artifact_paths: - "./output/**/*" plugins: - docker#v3.5.0: image: mcr.microsoft.com/powershell:windowsservercore-1809 environment: - BUILDKITE_JOB_ID...

This would be very useful @rsinnet!

We are also looking to upgrade to v2.7. It's good to see there aren't any major problems here. I'd be interested to know the thoughts of the core team. Can...

As the [Language Support for Java(TM) by RedHat](https://marketplace.visualstudio.com/items?itemName=redhat.java) extension is now the prefered choice for Lombok, I have raised the `@SuperBuilder` annotation issue with the Red Hat Developer team, see...

I added an override to my `package.json` instead: ```json { "name": "your-project-name", ... "overrides": { "date-fns": "^2.0.0" } } ``` After adding it, run `npm install`. Check if it's working...

> It would probably be good to release v2.0.1 of this that caps the date-fns dependency to `^2` for all the automated systems that keep wanting to upgrade it currently...

We are using something like this (in a Vue web app): ```js player.on("stateChange", (ev) => { if (ev.data === 0) { // video ended restartVideo(); }; }); function restartVideo() {...