lsh
lsh
This function looks similar to the `creadeMain` function, but it will be much more convenient to use. If this idea is agreed, I will start a PR. 👀 @pi0
I really need this feature 💛
👀 If no one has tried to implement it yet, I would like to try to implement this feature.
Maybe this will be a decent idea, .or anybody has better advise :) ```ts export default defineCommand({ meta: { name: "lint", description: "A test command", }, args: { files: {...
Currently it can only be passed implicitly by putting the variable into global scope, or mounting it on a `context` object. I don't think this is a good and safe...
The type of `options.plugins` is union type: https://github.com/rollup/rollup/blob/23d5282e016af67e78f29820037a3fb9c4526785/src/rollup/types.d.ts#L575 So you can do like this: ```ts export default defineBuildConfig({ declaration: true, rollup: { esbuild: { minify: true, }, inlineDependencies: true, },...
First of all, thank you for your response. However, even after installing the latest `pnpm`, executing `pnpm publish` is still not working. Only the dependency versions in the outermost `package.json`...
This looks to be a problem of usage with the CJS/ESM, I think there are two way to solve your problem: 1. Use `require` syntax with CJS. ```ts const Sentry...