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 a6cb009 commit 04316f1Copy full SHA for 04316f1
utils/build/build.js
@@ -68,7 +68,7 @@ const copyFiles = [];
68
69
const watchMode = process.argv.slice(2).includes('--watch');
70
const withSourceMaps = watchMode;
71
-const installMode = process.argv.slice(2).includes('--install');
+const disableInstall = process.argv.slice(2).includes('--disable-install');
72
const ROOT = path.join(__dirname, '..', '..');
73
74
/**
@@ -589,7 +589,7 @@ onChanges.push({
589
script: 'utils/generate_types/index.js',
590
});
591
592
-if (installMode) {
+if (watchMode && !disableInstall) {
593
// Keep browser installs up to date.
594
onChanges.push({
595
inputs: ['packages/playwright-core/browsers.json'],
0 commit comments