Skip to content

Commit

Permalink
-> v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Nov 25, 2016
1 parent 541f4cc commit 4d842ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 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.2

* On second thoughts, don't transpile build. Was only really for Uglify's benefit, which is daft

## 0.2.1

* Transpile build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "0.2.1",
"version": "0.2.2",
"description": "The magical disappearing UI framework",
"main": "dist/svelte.js",
"files": [
Expand Down
9 changes: 1 addition & 8 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import nodeResolve from 'rollup-plugin-node-resolve';
import buble from 'rollup-plugin-buble';

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

0 comments on commit 4d842ab

Please sign in to comment.