Skip to content

Commit

Permalink
NPM release of v0.2.0
Browse files Browse the repository at this point in the history
gradle-to-js now supports...

1) merging same-key objects
foo {
    bar "a"
}

foo {
    car "b"
}

now renders the following

foo {
    bar: "a",
    car: "b"
}

2) closures with their brackets declared on the line below

foo
{
    bar "a"
}
  • Loading branch information
Karl Lindmark committed Dec 28, 2016
1 parent a6a9142 commit 203b61e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
!index.js
!lib/*
*
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gradle-to-js",
"version": "0.1.1",
"version": "0.2.0",
"description": "A quick & dirty gradle build file converter to javascript object",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 203b61e

Please sign in to comment.