We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 749e2e5 commit e59e50fCopy full SHA for e59e50f
1 file changed
esbuild.config.js
@@ -1,4 +1,3 @@
1
-const esbuild = require('esbuild');
2
const { execSync } = require('child_process');
3
const { readFileSync, writeFileSync, existsSync } = require('fs');
4
@@ -9,7 +8,7 @@ const projectPath = project.startsWith('test-')
9
8
? 'examples/plugins'
10
: `packages/${project}`;
11
12
-esbuild.build({
+module.exports = {
13
plugins: [
14
{
15
name: 'TypeScriptDeclarations',
@@ -79,4 +78,4 @@ esbuild.build({
79
78
},
80
81
],
82
-});
+};
0 commit comments