Make chokidar happy with fsevents

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
Vincent Petry 2022-01-10 18:00:24 +01:00
parent c948ceee60
commit 035d73db11
No known key found for this signature in database
GPG key ID: E055D6A4D513575C
2 changed files with 30 additions and 2 deletions

View file

@ -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",

View file

@ -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"
}
}