Add a smoketest for packaging with parcel (#3371)

* Add a smoketest for packaging with parcel

* Prevent parcel from bundling shims for `process` or `buffer`
This commit is contained in:
Alexandru Dima 2022-10-18 19:49:55 +02:00 committed by GitHub
parent 2b3d8516c6
commit 8fc2ca540c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 4398 additions and 101 deletions

View file

@ -42,7 +42,7 @@ async function runTests() {
// uncomment to shortcircuit and run a specific combo
// await runTest('webpack', 'chromium'); return;
/** @type {PackagerKind[]} */
const testTypes = ['amd', 'webpack', 'esbuild', 'vite'];
const testTypes = ['amd', 'webpack', 'esbuild', 'vite', 'parcel'];
for (const type of testTypes) {
await runTest(type, 'chromium');