fsevents 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
package/fsevents.node CHANGED
Binary file
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "fsevents",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Native Access to MacOS FSEvents",
5
5
  "main": "fsevents.js",
6
6
  "os": [
7
7
  "darwin"
8
8
  ],
9
+ "files": ["fsevents.js", "fsevents.node"],
9
10
  "engines": {
10
11
  "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
11
12
  },
@@ -1,26 +0,0 @@
1
- name: Node CI
2
-
3
- on: [push]
4
-
5
- jobs:
6
- build:
7
-
8
- runs-on: macOS-latest
9
-
10
- strategy:
11
- matrix:
12
- node-version: [8, 10, 12]
13
-
14
- steps:
15
- - uses: actions/checkout@v1
16
- - name: Node v${{ matrix.node-version }}
17
- uses: actions/setup-node@v1
18
- with:
19
- node-version: ${{ matrix.node-version }}
20
- - name: npm install, build, and test
21
- run: |
22
- npm install
23
- npm run build --if-present
24
- npm test
25
- env:
26
- CI: true