Derek Wickern

Results 62 comments of Derek Wickern

👍 Here's the [source](https://github.com/emberjs/ember.js/blob/c2c8171301d2b1a0c499b4a55009ebf428f40e69/packages/%40ember/-internals/runtime/lib/mixins/array.js#L1451). It can be loosened further to ```ts setObjects(objects: ReadonlyArray): this; ```

This is by design according to https://github.com/Microsoft/TypeScript/issues/13543

I get this error when I place a `vertical-collection` inside another one. ``` Error: Assertion Failed: targetValue must be greater than or equal to 0 at new EmberError (http://localhost:4200/assets/vendor.js:41496:23) at...

I see this error randomly throughout the day. The stack trace points to ember-template-lint: ``` - broccoliBuilderErrorStack: Error: You specified a `"srcDir": undefined` which does not exist and did not...

@cibernox Could you take a look at this PR?

I would prefer to keep platform-specific options out of the _universal_ java options. Maybe you could use `bashScriptExtraDefines` and `batScriptExtraDefines` instead.

I think we would need different defaults then for `bashScriptConfigLocation` / `batScriptConfigLocation` since currently they point to the same `conf/application.ini`.

Docker can only access files in its _build context_. So you will have to copy any additional files to `Docker / stagingDirectory`, otherwise Docker won't see them.

Try this: ```sbt Docker / dockerPackageMappings += file("/path/to/file.txt") -> "out.txt" ```

I was able to get Hyper-V barely working but it's not easy: - There's no official CoreOS vagrant box for Hyper-V (although I was able to get one working in...