enure

Results 10 comments of enure

The screencast looks nice. It might be nice also to have an option to just mark lines that have changed in the gutter.

@koenpunt Thanks for the tip. By the way, it's actually the SCM Diff Gutter plugin.

Just my two cents, but I think cssnano should be removed altogether and developers can just add it to their rollup build as needed. It's super simple to add it...

In our projects we have auto-generated files and the file name is a unique id based on a SHA of the file contents like "dist/i/f2e4bdcfaeb8aeec3b91d47fd8266c2c7fe4cbdb.png". We therefore cannot add the...

In my case, I have bundled a Promise polyfill with s.js and we load that file dynamically if the es6 dynamic import fails.

We adjust the minifier based on the output format: ``` function getConfig(outputFormat) { ... plugins: [ ... outputFormat === 'esm' ? terser() : uglify() ] } export default [ getConfig('system'),...

I installed @embats fork and it's working fine so far. I have it testing about 10 URLs on a schedule via Jenkins.

cc: @Semigradsky This is related to #37.

Seemingly related discussion: https://github.com/vitejs/vite/issues/15620 The first suggestion in this comment worked for me: https://github.com/vitejs/vite/issues/15620#issuecomment-1894974868