Jon Frisby
Jon Frisby
[sample.zip](https://github.com/cycloidio/inframap/files/9057551/sample.zip) Sample of state files provided. `global-stage.tfstate` is the non-workspaced one, and `workload-stage.tfstate` is one of the relevant workspace state files. In actuality, our infrastructure involves a meta account with...
I, too, would like an answer to this. I've wound up with a pattern of having `package/testutils.go`, and a `testutils` package: The former providing scaffolding/mocks to be used in other...
I've forked the repo to remove the Sprockets dependency. https://github.com/FasterBetter/activeadmin_addons_nosprockets So, it seems there's a bit more that's needed to make this work with Propshaft besides what I've discovered. It...
What did you do to get select2 to work? I have been unable to figure out how to make it happen.
Yeah, that's what I was doing and just not having any luck.
Specifically, when I try that, I wind up with this from cssbundler: ``` 12:49:50 css.1 | Error: Can't find stylesheet to import. 12:49:50 css.1 | ╷ 12:49:50 css.1 | 1...
Part of the issue seems to be import paths. For the CSS, the correct import statement seems to be `@import "select2/dist/css/select2";`, not `@import "select2"`. So I guess sass isn't mapping...
@joker-777 Can you give your `package.json`, `active_admin.scss`, and `active_admin.js` files for comparison?
One further issue I'm running into using dart-sass is this: ```scss @import 'jquery-datetimepicker/build/jquery.datetimepicker.min.css'; ``` It's not liking the `.css` at the end, and leaving the import in the resulting CSS....
So basically, you're using Webpack, not ESBuild. Gotcha.