Oskar Segersvärd
32a1b22394
Add globals option to rollup executable.
Also:
* Updated help.md to include correct format default (ES6).
* Removed unused requires and variables from `bin/runRollup.js`.
* Added missing definition of `map` for outputting inline source maps.
* Grabs external names from globals option. These are equivalent:
rollup -f iife --globals lodash:_,jquery:jQuery
rollup -f iife --globals lodash:_,jquery:jQuery --external lodash,jquery
10 years ago
Rich Harris
4d6b5de582
add test for custom global names for external modules
10 years ago
Rich Harris
6a4f8c1400
add test for #53
10 years ago
Rich Harris
850085f1f6
Merge branch 'gh-53' of https://github.com/Victorystick/rollup into Victorystick-gh-53
10 years ago
Rich Harris
baa2eefad8
Merge pull request #58 from rollup/Fix-#57
Fix #57
10 years ago
Rich Harris
53fa8fce8b
add test for #57
10 years ago
Rich Harris
2d02156a06
Merge pull request #56 from Swatinem/import-empty-external
allow importing external modules for side effects, fixes #55
10 years ago
Oskar Segersvärd
5a3017729e
Fix #57
Prefix globalDeps with `global.`, to fix #57 .
10 years ago
Arpad Borsos
759d3938b9
allow importing external modules for side effects, fixes #55
10 years ago
Oskar Segersvärd
788f11dbc7
Made `dirname` handle the empty string.
10 years ago
Rich Harris
802ce4fe4f
-> 0.11.4
10 years ago
Rich Harris
15077a8729
Merge pull request #48 from rollup/gh-43
Fix #43
10 years ago
Brian Donovan
d26db11ea9
Fix accidental change of description from 5033267048
.
10 years ago
Rich-Harris
f1545cbf03
mark export declarations as used, to preserve side-effects ( #43 )
10 years ago
Rich-Harris
bda009e84d
Merge branch 'failing-test-for-side-effects-on-imported' of https://github.com/eventualbuddha/rollup into eventualbuddha-failing-test-for-side-effects-on-imported
10 years ago
Rich-Harris
913390201b
-> 0.11.3
10 years ago
Rich-Harris
77452031ac
tests for #42
10 years ago
Rich-Harris
d81acf600b
ensure external modules have names, and that those names take priority ( #42 )
10 years ago
Rich-Harris
a3c383429e
dont rewrite class method keys incorrectly ( #42 )
10 years ago
Rich-Harris
f507ae4298
-> 0.11.2
10 years ago
Rich-Harris
0c86c2275d
fix typo (again...)
10 years ago
Rich Harris
5fad4eba18
check for computed property before abandoning checkForReads ( #47 )
10 years ago
Oskar Segersvärd
49d6b295fa
Forward `strong` parameter from `checkForWrites` to `checkForReads`.
10 years ago
Oskar Segersvärd
1232dc86c9
`assert` -> `assert.equal`
10 years ago
Oskar Segersvärd
af660dd5ef
I think it should be `this.isIncluded`.
10 years ago
Oskar Segersvärd
7c9bba40e6
Added a call to checkForReads in computed member expressions. Tests pass.
10 years ago
Oskar Segersvärd
15d541f675
Removed from tests.
10 years ago
Oskar Segersvärd
b4d26c5d85
Added failing test for dynamic properties of objects.
10 years ago
Rich Harris
ac1a0ef852
-> 0.11.1
10 years ago
Rich Harris
2d3251664a
Merge pull request #46 from Victorystick/feature/export-all
Implemented export * from ...
10 years ago
Oskar Segersvärd
0e2e705afa
Implemented export * from ...
10 years ago
Brian Donovan
5033267048
Test that top-level side effects involving imports are preserved.
With the current implementation of rollup, this test fails. To make it pass, you can replace `import obj from './obj;` in lib.js with `var obj = {};`, suggesting that it's the import itself that somehow confuses rollup.
10 years ago
Rich Harris
37c598b383
-> 0.11.0
10 years ago
Rich Harris
2aa5e6e11b
remove const, so tests pass on old node
10 years ago
Rich Harris
19f02ee433
Merge branch 'eventualbuddha-failing-rsvp-test'
10 years ago
Rich Harris
412544268c
include side-effects ( #40 )
10 years ago
Rich Harris
e17076250c
mark statements rather than expanding them
10 years ago
Rich Harris
eadbfcbdcd
refactoring
10 years ago
Rich Harris
33effb4b3b
order methods alphabetically. easier to find what youre looking for
10 years ago
Rich Harris
5525ac2213
Merge branch 'failing-rsvp-test' of https://github.com/eventualbuddha/rollup into eventualbuddha-failing-rsvp-test
10 years ago
Rich Harris
4cfb38a116
Merge pull request #41 from rollup/browser
Browser-friendly version
10 years ago
Rich Harris
bac6e9427f
path fixes
10 years ago
Rich Harris
7f3881f5d6
update devDeps
10 years ago
Rich Harris
3dbc2a7878
squelch babel warnings
10 years ago
Rich Harris
0d32366539
fix infinite loop
10 years ago
Brian Donovan
d4eeb54dae
Add a failing test that illustrates a problem with RSVP.
10 years ago
Rich-Harris
a7aed4b2b8
WIP conversion to browser-friendly bundle
10 years ago
Rich-Harris
ea2e332735
-> 0.10.0
10 years ago
Rich-Harris
cf522b2ed3
exclude empty var declarations for exported bindings
10 years ago
Rich Harris
94c3852929
ignore IIFEs for the purposes of determining strong/weak dependencies
10 years ago