Ivan Volti
Ivan Volti
Hi. It’s related to #41 and I like the idea. Just need to think how we can keep the configuration as simple as possible.
I’ll try to find time this week to make it possible to use objects in the sourceDirs array (#41), so that you can define directory specific optimization and prefix.
I had the same problem. @evancz Why `class` functions from Html and Svg modules have incompatible implementations? ``` elm -- From Html.Attributes -- className property can't be used for svg...
I pretty often use inline SVGs in my HTML and I can add `class` attribute to almost any element including SVG: ``` html ``` So when I first time tried...
@rtablada Yep, it's watched, but it doesn't reload all your config this way. Let's say in your `config/environment.js` you have the content below: ``` js module.exports = function(environment) { var...
I'm sure the workaround below is not a good way to do it, and yes I'm using private API here, but it works for me at the moment (it will...
The same here.
Just in case, here is a workaround, I'm using for now: ```shell $ npm install --save-dev broccoli-clean-css ``` `ember-cli-build.js`: ```js 'use strict'; const GlimmerApp = require('@glimmer/application-pipeline').GlimmerApp; const CleanCss = require('broccoli-clean-css');...
I built [ember-resize-observer-service](https://github.com/PrecisionNutrition/ember-resize-observer-service) to solve exactly the [problem](https://groups.google.com/a/chromium.org/g/blink-dev/c/z6ienONUb5A/m/F5-VcUZtBAAJ?pli=1) with multiple `ResizeObserver` instances. Feel free to use it to migrate this addon to ResizeObserver API, if it makes sense. Building a...