Skip to content

Commit

Permalink
-> v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Nov 25, 2016
1 parent 507c9eb commit 541f4cc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Svelte changelog

## 0.2.1

* Transpile build

## 0.2.0

* Only generate UMD build, for now
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "0.2.0",
"version": "0.2.1",
"description": "The magical disappearing UI framework",
"main": "dist/svelte.js",
"files": [
Expand Down Expand Up @@ -50,6 +50,7 @@
"nyc": "^9.0.1",
"reify": "^0.4.0",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-node-resolve": "^2.0.0"
},
"nyc": {
Expand Down
9 changes: 8 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import nodeResolve from 'rollup-plugin-node-resolve';
import buble from 'rollup-plugin-buble';

export default {
entry: 'compiler/index.js',
Expand All @@ -7,6 +8,12 @@ export default {
{ dest: 'dist/svelte.js', format: 'umd' }
],
plugins: [
nodeResolve({ jsnext: true, module: true })
nodeResolve({ jsnext: true, module: true }),
buble({
transforms: {
dangerousForOf: true,
dangerousTaggedTemplateString: true
}
})
]
};

0 comments on commit 541f4cc

Please sign in to comment.