We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stylus
esbuild.config:
import * as esbuild from 'esbuild'; import stylePlugin from 'esbuild-style-plugin' esbuild.build({ bundle: true, outdir: './dist', entryPoints: ['./src/lib/index.styl'], entryNames: "nanarinostyl.min", minify: true, plugins: [ stylePlugin() ], }).then((res) => { console.log('Build complete', res); }).catch((e) => { console.log('Errors', e); });
When I was packaging Stylus, he generated an additional JavaScript file:index.js
index.js
But there's only this one in the code, and I'm not sure if it's an issue with esbuild or something else.
(()=>{})();
reproduced : https://github.com/RSS1102/nanarinostyl/tree/min.css
The text was updated successfully, but these errors were encountered:
No branches or pull requests
esbuild.config:
When I was packaging
Stylus
, he generated an additional JavaScript file:index.js
But there's only this one in the code, and I'm not sure if it's an issue with esbuild or something else.
reproduced : https://github.com/RSS1102/nanarinostyl/tree/min.css
The text was updated successfully, but these errors were encountered: