mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
10 years ago
35 changed files with 340 additions and 79 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'statements that modify definitions within unused functions are excluded' |
|||
}; |
@ -0,0 +1,28 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
|||
|
|||
}); |
@ -0,0 +1,26 @@ |
|||
'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
@ -0,0 +1,24 @@ |
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
@ -0,0 +1,28 @@ |
|||
(function () { 'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
|||
|
|||
})(); |
@ -0,0 +1,32 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
|||
|
|||
})); |
@ -0,0 +1,37 @@ |
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
// should be excluded
|
|||
var mutate2 = function () { |
|||
foo.mutated = 2; |
|||
} |
|||
|
|||
function unused1 () { |
|||
foo.wat = 'nope'; |
|||
} |
|||
|
|||
function unused2 () { |
|||
mutate1( foo ); |
|||
} |
|||
|
|||
export default foo; |
@ -0,0 +1,2 @@ |
|||
import foo from './foo'; |
|||
console.log( foo ); |
@ -1,6 +0,0 @@ |
|||
module.exports = { |
|||
description: 'removes empty var declarations that are exported', |
|||
options: { |
|||
moduleName: 'myBundle' |
|||
} |
|||
}; |
@ -1,8 +0,0 @@ |
|||
define(['exports'], function (exports) { 'use strict'; |
|||
|
|||
exports.foo = 42; |
|||
|
|||
exports.bar = 43; |
|||
exports.baz = 44; |
|||
|
|||
}); |
@ -1,6 +0,0 @@ |
|||
'use strict'; |
|||
|
|||
exports.foo = 42; |
|||
|
|||
exports.bar = 43; |
|||
exports.baz = 44; |
@ -1,9 +0,0 @@ |
|||
var foo; |
|||
foo = 42; |
|||
|
|||
var bar; |
|||
var baz; |
|||
bar = 43; |
|||
baz = 44; |
|||
|
|||
export { foo, bar, baz }; |
@ -1,8 +0,0 @@ |
|||
(function (exports) { 'use strict'; |
|||
|
|||
exports.foo = 42; |
|||
|
|||
exports.bar = 43; |
|||
exports.baz = 44; |
|||
|
|||
})((this.myBundle = {})); |
@ -1,6 +0,0 @@ |
|||
var bar, baz; |
|||
|
|||
bar = 43; |
|||
baz = 44; |
|||
|
|||
export { bar, baz }; |
@ -1,2 +0,0 @@ |
|||
export var foo; |
|||
foo = 42; |
@ -1,2 +0,0 @@ |
|||
export { foo } from './foo'; |
|||
export { bar, baz } from './bar'; |
@ -0,0 +1,7 @@ |
|||
module.exports = { |
|||
description: 'exports variables at end, if possible', |
|||
options: { |
|||
moduleName: 'myBundle' |
|||
}, |
|||
// solo: true
|
|||
}; |
@ -0,0 +1,11 @@ |
|||
define(['exports'], function (exports) { 'use strict'; |
|||
|
|||
var FOO = 'foo'; |
|||
|
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
|
|||
exports.FOO = FOO; |
|||
|
|||
}); |
@ -0,0 +1,9 @@ |
|||
'use strict'; |
|||
|
|||
var FOO = 'foo'; |
|||
|
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
|
|||
exports.FOO = FOO; |
@ -0,0 +1,7 @@ |
|||
var FOO = 'foo'; |
|||
|
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
|
|||
export { FOO }; |
@ -0,0 +1,11 @@ |
|||
(function (exports) { 'use strict'; |
|||
|
|||
var FOO = 'foo'; |
|||
|
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
|
|||
exports.FOO = FOO; |
|||
|
|||
})((this.myBundle = {})); |
@ -0,0 +1,5 @@ |
|||
export var FOO = 'foo'; |
|||
|
|||
console.log( FOO ); |
|||
console.log( FOO ); |
|||
console.log( FOO ); |
@ -1,6 +1,9 @@ |
|||
define(['exports'], function (exports) { 'use strict'; |
|||
|
|||
exports.foo = 1; |
|||
exports.bar = 2; |
|||
var foo = 1; |
|||
var bar = 2; |
|||
|
|||
exports.foo = foo; |
|||
exports.bar = bar; |
|||
|
|||
}); |
|||
|
@ -1,4 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
exports.foo = 1; |
|||
exports.bar = 2; |
|||
var foo = 1; |
|||
var bar = 2; |
|||
|
|||
exports.foo = foo; |
|||
exports.bar = bar; |
|||
|
@ -1,6 +1,9 @@ |
|||
(function (exports) { 'use strict'; |
|||
|
|||
exports.foo = 1; |
|||
exports.bar = 2; |
|||
var foo = 1; |
|||
var bar = 2; |
|||
|
|||
exports.foo = foo; |
|||
exports.bar = bar; |
|||
|
|||
})((this.myBundle = {})); |
|||
|
Loading…
Reference in new issue