hdoc-tools 0.52.0 → 0.52.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ // Disable Puppeteer's own bundled browser download (install.mjs). hdoc-tools
2
+ // provisions Chrome + chrome-headless-shell itself via hdoc-install-browser.js,
3
+ // which is idempotent, self-healing and retries — unlike the bundled download,
4
+ // whose single partial-extract failure on some Windows Server boxes aborts the
5
+ // whole `npm install`. Browsers are still fetched, just by our controlled path.
6
+ //
7
+ // Discovered by Puppeteer (cosmiconfig) walking up from node_modules/.../puppeteer
8
+ // to this package root during install. skipDownload only affects provisioning,
9
+ // not where the browser is launched from at runtime.
10
+ module.exports = {
11
+ skipDownload: true,
12
+ };