mirror of https://github.com/lukechilds/rollup.git
Rich Harris
10 years ago
23 changed files with 170 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
module.exports = { |
|||
description: 'does not indent with indent: false', |
|||
options: { |
|||
moduleName: 'foo', |
|||
indent: false |
|||
} |
|||
}; |
@ -0,0 +1,9 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
}); |
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
module.exports = foo; |
@ -0,0 +1,5 @@ |
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
export default foo; |
@ -0,0 +1,9 @@ |
|||
var foo = (function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
})(); |
@ -0,0 +1,13 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
global.foo = factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
})); |
@ -0,0 +1,3 @@ |
|||
export default function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
@ -0,0 +1,7 @@ |
|||
module.exports = { |
|||
description: 'auto-indents with spaces and indent: true', |
|||
options: { |
|||
moduleName: 'foo', |
|||
indent: true |
|||
} |
|||
}; |
@ -0,0 +1,9 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with spaces' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
}); |
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with spaces' ); |
|||
} |
|||
|
|||
module.exports = foo; |
@ -0,0 +1,5 @@ |
|||
function foo () { |
|||
console.log( 'indented with spaces' ); |
|||
} |
|||
|
|||
export default foo; |
@ -0,0 +1,9 @@ |
|||
var foo = (function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with spaces' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
})(); |
@ -0,0 +1,13 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
global.foo = factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with spaces' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
})); |
@ -0,0 +1,3 @@ |
|||
export default function foo () { |
|||
console.log( 'indented with spaces' ); |
|||
} |
@ -0,0 +1,7 @@ |
|||
module.exports = { |
|||
description: 'auto-indents with indent: true', |
|||
options: { |
|||
moduleName: 'foo', |
|||
indent: true |
|||
} |
|||
}; |
@ -0,0 +1,9 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
}); |
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
module.exports = foo; |
@ -0,0 +1,5 @@ |
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
export default foo; |
@ -0,0 +1,9 @@ |
|||
var foo = (function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
})(); |
@ -0,0 +1,13 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
global.foo = factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
|||
|
|||
return foo; |
|||
|
|||
})); |
@ -0,0 +1,3 @@ |
|||
export default function foo () { |
|||
console.log( 'indented with tabs' ); |
|||
} |
@ -0,0 +1,8 @@ |
|||
var assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'exports a default named function', |
|||
exports: function ( exports ) { |
|||
assert.equal( exports(), 42 ); |
|||
} |
|||
}; |
@ -0,0 +1,3 @@ |
|||
export default function foo () { |
|||
return 42; |
|||
}; |
Loading…
Reference in new issue