summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-01-10 18:00:24 +0100
committerVincent Petry <vincent@nextcloud.com>2022-01-10 18:00:24 +0100
commit035d73db11b82aeab0679586a2ca1e21f5f7b29b (patch)
tree0b65414283325e024cf15c3963bf739f8499e22d /build
parentc948ceee60aaace3ddd087e209d373fb338c8f91 (diff)
downloadnextcloud-server-035d73db11b82aeab0679586a2ca1e21f5f7b29b.tar.gz
nextcloud-server-035d73db11b82aeab0679586a2ca1e21f5f7b29b.zip
Make chokidar happy with fsevents
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'build')
-rw-r--r--build/package-lock.json25
-rw-r--r--build/package.json7
2 files changed, 30 insertions, 2 deletions
diff --git a/build/package-lock.json b/build/package-lock.json
index d6a2590a7bc..4d2542c080b 100644
--- a/build/package-lock.json
+++ b/build/package-lock.json
@@ -7,6 +7,9 @@
"": {
"name": "nextcloud-js-tests",
"version": "0.0.2",
+ "dependencies": {
+ "fsevents": "2.3.2"
+ },
"devDependencies": {
"handlebars": "^4.7.7",
"jasmine-core": "~2.5.2",
@@ -22,6 +25,9 @@
"node-sass": "~6.0.1",
"puppeteer": "^10.1.0",
"sinon": "<= 5.0.7"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
"node_modules/@babel/code-frame": {
@@ -1577,6 +1583,19 @@
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"dev": true
},
+ "node_modules/fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
"node_modules/function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
@@ -6365,6 +6384,12 @@
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"dev": true
},
+ "fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "optional": true
+ },
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
diff --git a/build/package.json b/build/package.json
index 3125bb559dc..244c71a1682 100644
--- a/build/package.json
+++ b/build/package.json
@@ -26,7 +26,10 @@
"sinon": "<= 5.0.7"
},
"overrides": {
- "colors": "1.4.0"
+ "colors": "1.4.0"
},
- "engine": "node >= 6.9"
+ "engine": "node >= 6.9",
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
}