rollup 2.29.0 → 2.32.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.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.29.0
4
- Thu, 08 Oct 2020 04:24:04 GMT - commit 0b02e52bc7816c473784794670a2c3047ac62a07
3
+ Rollup.js v2.32.1
4
+ Wed, 21 Oct 2020 07:32:18 GMT - commit 51e727c99bfc67a6bc46087c63950cec2a7fe12f
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.29.0
4
- Thu, 08 Oct 2020 04:24:04 GMT - commit 0b02e52bc7816c473784794670a2c3047ac62a07
3
+ Rollup.js v2.32.1
4
+ Wed, 21 Oct 2020 07:32:18 GMT - commit 51e727c99bfc67a6bc46087c63950cec2a7fe12f
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "2.29.0",
3
+ "version": "2.32.1",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
7
7
  "typings": "dist/rollup.d.ts",
8
8
  "bin": {
9
- "rollup": "./dist/bin/rollup"
9
+ "rollup": "dist/bin/rollup"
10
10
  },
11
11
  "scripts": {
12
12
  "build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup -c && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
@@ -35,11 +35,6 @@
35
35
  "test:coverage": "nyc --reporter html mocha",
36
36
  "test:leak": "cross-os test:leak:os",
37
37
  "test:package": "node scripts/test-package.js",
38
- "test:leak:os": {
39
- "darwin": "npm run test:leak:nix",
40
- "linux": "npm run test:leak:nix",
41
- "win32": "echo 'Skipping test:leak on Windows'"
42
- },
43
38
  "test:leak:nix": "npm i --silent --no-save weak@1 && node --expose-gc test/leak/index.js",
44
39
  "test:only": "mocha",
45
40
  "test:quick": "mocha -b",
@@ -148,5 +143,8 @@
148
143
  "default": "./dist/es/rollup.browser.js"
149
144
  },
150
145
  "./dist/": "./dist/"
146
+ },
147
+ "dependencies": {
148
+ "fsevents": "~2.1.2"
151
149
  }
152
150
  }