余凡
余凡
@dagwieers try vim 7.4, `·` symbol will cause the error which I don't know the reason yet. EDIT: okay, I found this line in `:help 'listchars'`: > All characters must...
try with: ```js module.exports = { content: ['./pages/**/*.{js,ts,jsx,tsx}'], plugins: { 'postcss-each': { plugins: { beforeEach: { tailwindcss: {}, }, }, }, 'postcss-preset-env': {}, autoprefixer: {}, }, }; ``` I can...
> Doing what @LevelbossMike suggested works for me but, if I understood correctly, setting `includePath: ['app']` will stop rebuilding with the new tailwind config when `tailwind.config.js` is changed by adding...
@ballPointPenguin No more `includePath`? How about with embroider? Did you test it?
It's important to consider how to access the tags attached to the HTML elements from outside the component. It sounds a lot like _forwarded reference_ in React: we pass tags...
> One question though, will it be possible to run prettier only for handlebars, but not for the JS code? Sure, you can use a `.prettierignore` file to exclude the...
> We should take the opportunity to explore the possibility of auto-folding whitespaces or at least auto trimming the indentation from the tag In that case, it should provide an...
I'm not sure this is a good idea because it ultimately beaks the consistency of template syntax, it perhaps makes new users getting confused about `as |...|`. They may think...
@averydev Though it is a cool idea, what about there is an argument named `@buttonArgs` as well? The reason we use `@` or `this.` in .hbs files is we want...
I'm thinking about a "picking" ability, something like: ```hbs {{! forwarding all passing attributes }} {{! forwarding some passing attributes }} ``` and it can be applied to `@arguments` if...