Dan Freeman
Dan Freeman
Looks like `'ts'` should be added to [the default snippet extensions array](https://github.com/ember-learn/ember-cli-addon-docs/blob/master/index.js#L93)
Does Tailwind have any baked in way to either disable or scope its resets?
We do some slightly odd things to try and make Marked (our md parser) play nicely with handlebars syntax, but ultimately some weirdness like this still leaks through. In short,...
@alexlafroscia as a short-term workaround, you might try indenting that entire block by four spaces, which will cause Marked to interpret it all as a code block
Three approaches that come to mind: 1. Investigate other markdown parsers to see if any others place more nicely with our needs 1. Advise people to move their hbs into...
1. I have a vague memory of trying to use the `script` provider back when we were originally setting up automatic deployment here and running into difficulty, but TBH I...
Great, thank you! ❤️
The issue seems to be a mismatch in expectations between `ember-fetch` and `ember-cli-fastboot`. The former [uses the `updateFastBootManifest` hook](https://github.com/ember-cli/ember-fetch/blob/6f60d521561171db5beabac5048f0af97a797c60/index.js#L106-L111) to add a Node-compatible version of fetch to the build, but...
I think https://github.com/tchak/ember-fetch-adapter/issues/1 and https://github.com/ember-cli/ember-fetch/issues/98 are two more recent examples of this popping up specifically due to `updateFastBootManifest` rather than the older `fastbootDependencies` issue
I should have some time to look at this later this week—first I'll have to read up on how traits actually work 😅