Skip to content

Commit

Permalink
-> 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed May 22, 2015
1 parent 8571b18 commit 07ae800
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# gobble-rollup changelog

## 0.1.2

* Upgrade rollup
* Support more options

## 0.1.1

* Upgrade rollup
Expand Down
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ module.exports = function rollup ( inputdir, outputdir, options ) {
}).then( function ( bundle ) {
return bundle.write( path.join( outputdir, dest ), {
format: options.format || 'cjs',
globalName: options.globalName
moduleId: options.moduleId,
moduleName: options.moduleName,
globals: options.globals
});
})
};
};
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "gobble-rollup",
"version": "0.1.1",
"version": "0.1.2",
"description": "Bundle ES6 modules with gobble and rollup",
"author": "Rich Harris",
"license": "MIT",
"repository": "https://github.com/gobblejs/gobble-rollup",
"dependencies": {
"rollup": "^0.3.1"
"rollup": "^0.4.0"
},
"keywords": [
"gobble",
Expand Down

0 comments on commit 07ae800

Please sign in to comment.