Rich-Harris
23f7c19f52
-> 0.7.1
10 years ago
Rich-Harris
593e87e69e
wrap solo tests in a console group, to make verbose logging easier to comprehend
10 years ago
Rich-Harris
d46d67f1c7
method call is assumed to mutate method owner ( #13 )
10 years ago
Rich-Harris
73a07c5c08
allow control over indentation ( closes #5 )
10 years ago
Rich-Harris
aa807c7869
handle named functions as default exports
10 years ago
Rich Harris
a6e709fcb7
add some failing tests to sort out later
10 years ago
Rich-Harris
4e4122dc1a
-> 0.7.0
10 years ago
Rich-Harris
cd8230f0cd
update tests
10 years ago
Rich-Harris
61db1faabc
dont do export rewriting for es6 bundles
10 years ago
Rich-Harris
3c6081c19e
skip specifier exports during rewrite
10 years ago
Rich-Harris
4b26a86d1d
rewrite exported vars, to keep exports live
10 years ago
Rich-Harris
315510f767
use Object.create(null) to avoid conflicts with Object.prototype. fixes #12
10 years ago
Rich-Harris
2993d92776
ensure at least one newline between each statement
10 years ago
Rich-Harris
5e5a00c012
test multiple exports form
10 years ago
Rich-Harris
ffa005eb68
attach iife global export to this, not window
10 years ago
Rich-Harris
28566475a5
check for moduleName option when exporting from UMD bundle
10 years ago
Rich-Harris
9e59e610d1
Merge branch 'master' of https://github.com/mbostock/rollup into mbostock-master
10 years ago
Rich Harris
94019461c2
Merge pull request #8 from eventualbuddha/cleanup
Remove unused imports and use one that should be used.
10 years ago
Mike Bostock
acecb7f862
Fix UMD exports.
Use function(exports), not function('exports').
10 years ago
Mike Bostock
f3c8eeee0a
You get a newline!
YOU get a newline!
Everyone gets a newline!
10 years ago
Mike Bostock
d9be5d6286
Fix for malformed output.
Without this change, you can get malformed stuff like this:
var foo = function() {
return "foo";
}var bar = function() {
return "bar";
}
By introducing a newline, a semicolon is implicitly inserted between statements
when necessary:
var foo = function() {
return "foo";
}
var bar = function() {
return "bar";
}
The indentation as a result of this commit is off, but I’m not sure how to fix
it because the build fails for me. (I tested this by editing dist directly.)
10 years ago
Brian Donovan
3f9d5fff7a
Remove unused imports and use one that should be used.
10 years ago
Rich Harris
141c67ad3e
Merge pull request #7 from mbostock/master
Fix links in README.
10 years ago
Mike Bostock
942160ba6e
Fix links.
10 years ago
Rich-Harris
11e14cb0e6
-> 0.6.5
10 years ago
Rich-Harris
d26b08ef04
mrege conflict
10 years ago
Rich-Harris
f873e70ff5
oh man, never run git reset HEAD while you have unmerged paths. chaos
10 years ago
Rich-Harris
40b32d0006
add tests
10 years ago
Rich-Harris
22c845f1cf
write files to disk for test purposes
10 years ago
Rich-Harris
4095ccaa12
lol git
10 years ago
Rich-Harris
e76d7728c4
use actual generated files for test comparisons, to ensure write() behaviour
10 years ago
Rich Harris
d576c56c22
Merge pull request #4 from eventualbuddha/remove-unused-ivar
Remove unused instance variables.
10 years ago
Brian Donovan
6dfa8f1e3f
Remove unused instance variables.
10 years ago
Rich Harris
c25e678181
-> 0.6.4
10 years ago
Rich Harris
583552e9f2
fix CJS export
10 years ago
Rich Harris
c2ad42ba25
-> 0.6.3
10 years ago
Rich Harris
8039efc3b7
Merge branch 'master' of https://github.com/rollup/rollup
10 years ago
Rich Harris
23e0f69559
fix finalisers
10 years ago
Rich Harris
03de6c5656
Merge pull request #3 from Bobris/master
Fixed endless cycle on Windows
10 years ago
Boris Letocha
d0e8890738
Fixed endless cycle on Windows
in defaultExternalResolver
10 years ago
Rich Harris
b94faecfe9
-> 0.6.2
10 years ago
Rich Harris
5972bf8346
assignments to properties of bindings is permitted
10 years ago
Rich Harris
b2cdb7a06e
-> 0.6.1
10 years ago
Rich Harris
836f6b93b3
support for transformers
10 years ago
Rich Harris
bd97a02dda
-> 0.6.0
10 years ago
Rich Harris
8bad2598b7
resolve jsnext:main in node_modules by default, allow resolveExternal to be overridden
10 years ago
Rich Harris
c5a783c5dd
on second thoughts, remove advanced API stuff from readme
10 years ago
Rich Harris
f177eb057c
update README
10 years ago
Rich Harris
cdeace10ca
BREAKING: API methods take a single argument, and external modules must be declared as such
10 years ago
Rich Harris
2379fae607
add bin dir to npm package
10 years ago