-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
esbuildをpeerDependenciesに入れてほしい #21
Comments
Could you please create a sample project to reproduce the error? |
OK, I have prepared a sample repository for you to reproduce the error. |
Thanks!! workaround: Instead of using tsc, change esbuild.ts to esbuild.js and run it in Node.js const { build } = require("esbuild");
const { GasPlugin } = require("esbuild-gas-plugin");
build({
entryPoints: ["src/index.ts"],
bundle: true,
outfile: "dist/bundle.js",
plugins: [GasPlugin],
}); |
Thank you too! I use that until the issue is resolved. |
esbuild v0.20.0で使用すると型エラーが出るのでesbuildをpeerDependenciesに入れてほしいです。
The text was updated successfully, but these errors were encountered: