mirror of https://github.com/lukechilds/rollup.git
Oskar Segersvärd
9 years ago
5 changed files with 26 additions and 3 deletions
@ -0,0 +1,5 @@ |
|||||
|
module.exports = { |
||||
|
solo: true, |
||||
|
description: 'adds banner/intro/outro/footer', |
||||
|
command: 'rollup -i main.js -f iife --banner "// banner" --intro "// intro" --outro "// outro" --footer "// footer"' |
||||
|
}; |
@ -0,0 +1,9 @@ |
|||||
|
// banner
|
||||
|
(function () { 'use strict'; |
||||
|
|
||||
|
// intro
|
||||
|
console.log( 42 ); |
||||
|
// outro
|
||||
|
|
||||
|
})(); |
||||
|
// footer
|
@ -0,0 +1 @@ |
|||||
|
console.log( 42 ); |
Loading…
Reference in new issue