Skip to content

Commit

Permalink
Bumps version to v0.2.0.
Browse files Browse the repository at this point in the history
Fixes indentation in parser.
  • Loading branch information
Paul Cuthbertson committed Apr 10, 2016
1 parent aa5181b commit d93636e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "starlight",
"description": "A Lua -> ES6 transpiler",
"version": "0.1.8",
"version": "0.2.0",
"author": {
"name": "Paul Cuthbertson"
},
Expand Down
12 changes: 6 additions & 6 deletions src/parser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ function parseScriptTags (tags) {
let x = superagent
.get(src)
.end((error, response) => {
if (error) {
resolve({});
if (error) {
resolve({});

} else {
resolve({
} else {
resolve({
modname: tag.dataset.modname,
body: response.text
});
}
});
}
});
}));

} else {
Expand Down

0 comments on commit d93636e

Please sign in to comment.