Skip to content

Commit

Permalink
chore: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
mingxuanzhangsfdx committed Oct 24, 2024
1 parent 5948cad commit 3d4ce3a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions scripts/testEsbuild.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
const { exec } = require('child_process');

const commandToRun = 'node ./scripts/esbuild.config.js';

// Run the command
exec(commandToRun, (error, stdout, stderr) => {
exec('node ./scripts/esbuild.config.js', (error, stdout, stderr) => {
// Combine stdout and stderr to check the entire output
const output = `${stdout}\n${stderr}`;
if (error) {
Expand Down

0 comments on commit 3d4ce3a

Please sign in to comment.