From 4ca5b45cb2361cd2f18bae417b58b3657d58caff Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 4 Jun 2024 17:47:05 -0700 Subject: [PATCH] deps: workaround for `@parcel-bundler/watcher` bug on GitHub Pages?? https://github.com/parcel-bundler/watcher/issues/152#issuecomment-1876118600 --- package-lock.json | 22 ++++++++++++++++++++++ package.json | 3 +++ 2 files changed, 25 insertions(+) diff --git a/package-lock.json b/package-lock.json index 1baef1d..85386f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,6 +26,9 @@ }, "engines": { "node": ">=20.2.0" + }, + "optionalDependencies": { + "@parcel/watcher-linux-x64-glibc": "*" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -3566,6 +3569,25 @@ "url": "https://opencollective.com/parcel" } }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, "node_modules/@parcel/workers": { "version": "2.8.3", "resolved": "https://registry.npmjs.org/@parcel/workers/-/workers-2.8.3.tgz", diff --git a/package.json b/package.json index 98cc045..7a3eb77 100644 --- a/package.json +++ b/package.json @@ -33,5 +33,8 @@ }, "devDependencies": { "xo": "^0.58.0" + }, + "optionalDependencies": { + "@parcel/watcher-linux-x64-glibc": "*" } }