Marco Pfeiffer
Marco Pfeiffer
I actually have no idea. The best way would probably be to add variable overwrites into the json file and make the variables less generate from scratch with those overwrites.
I think you are trying to show me an "before and after" but both code snippets are from different parts of bootstrap. Or am I missing something? Btw. you can...
thanks, much more easy to read. Hoever, I can't replicate your issue. I changed `@grid-float-breakpoint` to `1111px` and the generated file seems to be right. ``` CSS @media (min-width: 1111px)...
Well, meteor loads all packages in the order defined in the `.meteor/packages` so your problem probably is that the bootrstrap package is defined after the x-ediable-bootstrap package.
I think I already know where the problem is. I include the javascript while processing the `json` file. The problem is that meteor internally "thinks" that this json file is...
It is sadly the only way of even accessing a file during the build process but the behavior is technically correct. Meteor lacks a default way for configuring packages, that...
Wouldn't work either. The problem is that i need a hook to tell meteor to include files depending on the configuration. The build plugin is the only hook i know...
The source handler should create the final bootstrap files, however you have to add them too because the current solution is kind of a hack. Also, you need to add...
I can confirm that the tests fail when run in cordova on andoid. It seems like, that the files can't be loaded but that is a different error than you...
Ok nevermind, this is related to a change meteor made a with the `:` in an url. Replacing that with an `_` fixes the file problem. However that's only related...