Skip to content

Commit

Permalink
whoops i broke that build
Browse files Browse the repository at this point in the history
  • Loading branch information
davydotcom committed Jul 29, 2014
1 parent 05adf1e commit a980b80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AssetPipelineGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import asset.pipeline.grails.AssetResourceLocator


class AssetPipelineGrailsPlugin {
def version = "1.9.5"
def version = "1.9.6"
def grailsVersion = "2.0 > *"
def title = "Asset Pipeline Plugin"
def author = "David Estes"
Expand Down
2 changes: 2 additions & 0 deletions src/docs/guide/introduction.gdoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ h3. Additional Information

h3. Release History

* July 29, 2014
** 1.9.6 Release - Whoops I had a typo. Thanks Travis.ci
* July 29, 2014
** 1.9.5 Release - Fixed Windows Platform Bug in CSS. Upgraded to UglifyJS2.0
* July 11, 2014
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class UglifyJsProcessor {
options.each{ it ->
if(it.key == 'strictSemicolons') {
// jsOptions.put('strict_semicolons', scope, it.value)
jsOptions.defilneProperty("strict_semicolons",it.value, NativeObject.READONLY)
jsOptions.defineProperty("strict_semicolons",it.value, NativeObject.READONLY)
} else if(it.key == 'mangleOptions' || it.key == 'genOptions') {
def nestedMap = new NativeObject()
def key = (it.key == 'mangleOptions' ? 'mangle_options' : 'gen_options')
Expand Down

0 comments on commit a980b80

Please sign in to comment.