rollup 0.67.3 → 0.67.4

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,9 @@
1
1
  # rollup changelog
2
2
 
3
+ ## 0.67.4
4
+ *2018-12-03*
5
+ * Fix an issue with long lines in sourcemaps ([#2571](https://github.com/rollup/rollup/pull/2571))
6
+
3
7
  ## 0.67.3
4
8
  *2018-11-17*
5
9
  * Show proper error when using `inlineDynamicImports` with `experimentalPreserveModules` ([#2560](https://github.com/rollup/rollup/pull/2560))
@@ -7,7 +11,7 @@
7
11
 
8
12
  ## 0.67.2
9
13
  *2018-11-17*
10
- * Prevent crash when not returning sourcemaps from `renderChunk` ([#2588](https://github.com/rollup/rollup/pull/2588))
14
+ * Prevent crash when not returning sourcemaps from `renderChunk` ([#2558](https://github.com/rollup/rollup/pull/2558))
11
15
 
12
16
  ## 0.67.1
13
17
  *2018-11-11*
package/bin/rollup CHANGED
@@ -251,7 +251,7 @@ function isNumber (x) {
251
251
  return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x);
252
252
  }
253
253
 
254
- var version = "0.67.3";
254
+ var version = "0.67.4";
255
255
 
256
256
  /*! *****************************************************************************
257
257
  Copyright (c) Microsoft Corporation. All rights reserved.