Skip to content

Commit

Permalink
Build: Re-enalbe demos/bundlers in npm run test-demos
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Jul 30, 2024
1 parent 50c4daa commit 6f24818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/bundlers.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const dirname = path.dirname(url.fileURLToPath(import.meta.url));
const DIR = path.join(dirname, 'bundlers');

// Prepare
// cp.execSync('npm install --no-audit --update-notifier=false', { cwd: DIR, encoding: 'utf8' });
cp.execSync('npm install --no-audit --update-notifier=false', { cwd: DIR, encoding: 'utf8' });
await import('./bundlers/build.mjs');

const tmpJsFiles = fs.readdirSync(path.join(DIR, 'tmp'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"test-cli": "node bin/qunit.js test/main/ test/cli/*.js",
"test": "npm run lint && npm run build && npm run test-main && npm run test-cli",
"test-nolint": "npm run build && npm run test-main && npm run test-cli",
"test-demos": "npm run build && node bin/qunit.js demos/*.js",
"test-demos": "npm run build && node bin/qunit.js demos/*.{mjs,js}",
"browserstack": "browserstack-runner -v",
"authors": "(echo 'Authors ordered by first contribution\n' && git log --format='%aN <%aE>' --no-merges --reverse | awk '!seen[$0]++') | tee AUTHORS.txt",
"coverage": "npm run build-coverage && npm run coverage-cli && npm run coverage-main && nyc report",
Expand Down

0 comments on commit 6f24818

Please sign in to comment.