esbuild-plugin-ifdef icon indicating copy to clipboard operation
esbuild-plugin-ifdef copied to clipboard

Results 2 esbuild-plugin-ifdef issues
Sort by recently updated
recently updated
newest added

This change will allow use of `#ifdef` with indentation. Like this: ```js fuction fn() { // code... //#ifdef TARGET_DEBUG debug() //#endif // code... } ``` Earlier you had to put...

When I first started using it, I get a error with `esbuild.build({/* ... */}).catch(console.error)`: ``` Error: [#ifdef] "onLoad" filter is not a valid Go regular expression: "(C:\\Users\\xxx\\Documents\\test\\node_modules|C:\\Users\\xxx\\Documents\\test\\src).*\\.(js|ts|tsx)$" ``` After replacing...