rollup 1.16.7 → 1.17.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # rollup changelog
2
2
 
3
+ ## 1.17.0
4
+ *2019-07-15*
5
+
6
+ ### Features
7
+ * Allow plugins to access current combined sourcemap in transform hook for coverage instrumentation (#2986)
8
+
9
+ ### Pull Requests
10
+ * [#2987](https://github.com/rollup/rollup/pull/2987): Fix code fences for link (@johanholmerin)
11
+ * [#2989](https://github.com/rollup/rollup/pull/2989): Bump lodash from 4.17.11 to 4.17.14 (@dependabot)
12
+ * [#2993](https://github.com/rollup/rollup/pull/2993): Add getCombinedSourceMap in transform plugin context (@billowz)
13
+
3
14
  ## 1.16.7
4
15
  *2019-07-09*
5
16
 
package/bin/rollup CHANGED
@@ -223,7 +223,7 @@ function isNumber(x) {
223
223
  return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x);
224
224
  }
225
225
 
226
- var version = "1.16.7";
226
+ var version = "1.17.0";
227
227
 
228
228
  const createGetOption = (config, command) => (name, defaultValue) => command[name] !== undefined
229
229
  ? command[name]