We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d192c commit a88a080Copy full SHA for a88a080
package.json
@@ -59,7 +59,7 @@
59
}
60
},
61
"lint-staged": {
62
- "*.js,*.ts": [
+ "*.{ts,js}": [
63
"eslint --fix",
64
"git add"
65
],
packages/run/lib/index.js
@@ -35,7 +35,9 @@ module.exports = (opts = {}) => {
35
if (!isWrite) {
36
this.error(`@rollup/plugin-run currently only works with bundles that are written to disk`);
37
38
+ },
39
40
+ writeBundle(outputOptions, bundle) {
41
const dir = outputOptions.dir || path.dirname(outputOptions.file);
42
43
let dest;
0 commit comments