rollup 0.25.7 → 0.25.8

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.25.8
4
+
5
+ * Unixize entry path ([#586](https://github.com/rollup/rollup/pull/586))
6
+
3
7
  ## 0.25.7
4
8
 
5
9
  * Expand deshadowed shorthand properties ([#575](https://github.com/rollup/rollup/issues/575))
@@ -1,6 +1,6 @@
1
1
  /*
2
- Rollup.js v0.25.7
3
- Sun Mar 27 2016 19:11:19 GMT-0400 (EDT) - commit eb29daaacfaccb5b7139d0784e74dd8fa7aed524
2
+ Rollup.js v0.25.8
3
+ Sun Apr 03 2016 10:31:30 GMT-0400 (EDT) - commit 49e9fac201793b7590f70e8ece9434fb71605ee3
4
4
 
5
5
 
6
6
  https://github.com/rollup/rollup
@@ -6578,7 +6578,7 @@
6578
6578
  }
6579
6579
  });
6580
6580
 
6581
- this.entry = options.entry;
6581
+ this.entry = unixizePath(options.entry);
6582
6582
  this.entryModule = null;
6583
6583
 
6584
6584
  this.resolveId = first([function (id) {
@@ -6937,7 +6937,7 @@
6937
6937
  return Bundle;
6938
6938
  })();
6939
6939
 
6940
- var VERSION = '0.25.7';
6940
+ var VERSION = '0.25.8';
6941
6941
 
6942
6942
  var ALLOWED_KEYS = ['banner', 'dest', 'entry', 'exports', 'external', 'footer', 'format', 'globals', 'indent', 'intro', 'moduleId', 'moduleName', 'onwarn', 'outro', 'plugins', 'sourceMap'];
6943
6943