Eric MORAND
Eric MORAND
My CSS is being built in an intermediate folder and postcss-copy resolves the name of the assets by using the following call: `path.dirname(decl.source.input.file)` The input file being into the "build"...
I can't find a way to have postcss-copy works with pure node. Here is my code: ``` let postcss = require('postcss'); postcss({ plugins: [ require('postcss-copy')({ dest: 'dist', basePath: '.' })...
- Rollup Plugin Name: @rollup/plugin-typescript - Rollup Plugin Version: 11.1.5 - Rollup Version: 4.9.0 - Operating System (or Browser): Ubuntu - Node Version: 16.20 - Link to reproduction: https://github.com/ericmorand/rollup-plugin-typescript-issue-3 ###...
This is a follow-up to #1650. Rollup Plugin Name: @rollup/plugin-typescript Rollup Plugin Version: 11.1.5 Rollup Version: 4.9.0 Operating System (or Browser): Ubuntu Node Version: 16.20 Link to reproduction: https://github.com/ericmorand/rollup-plugin-typescript-issue ###...
## Rollup Plugin Name: `typescript` This PR contains: - [x] bugfix - [ ] feature - [ ] refactor - [ ] documentation - [ ] other Are tests included?...
- Rollup Plugin Name: @rollup/plugin-typescript - Rollup Plugin Version: 11.1.5 - Rollup Version: 4.9.0 - Operating System (or Browser): Ubuntu - Node Version: 16.20 - Link to reproduction: https://github.com/ericmorand/rollup-plugin-typescript-issue-2 ###...
- Rollup Plugin Name: `@rollup/plugin-typescript` - Rollup Plugin Version: 11.1.5 - Rollup Version: 4.9.0 - Operating System (or Browser): Ubuntu - Node Version: 16.20 - Link to reproduction: https://github.com/ericmorand/rollup-plugin-typescript-issue ###...
When rendering the following template, I get the error `A block definition cannot be nested under non-capturing nodes`: ```twig {% extends "layout.twig" %} {% if false %} {% block content...
Except if I miss something, there is no documentation for the `` operator even though it is mentioned in both Twig 2 and 3 documentation: https://twig.symfony.com/doc/2.x/templates.html#expressions https://twig.symfony.com/doc/3.x/templates.html#expressions
```twig {{ (5 has every v => v == 4 and v == "foo") ? 'Every' : 'Not every' }} v is equal to both 4 and "foo" ``` Outputs:...