๐Ÿ“ฆ chrisregnier / closure-compiler-maven-plugin

Maven plugin to run the closure compiler on your javascript

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/chrisregnier/closure-compiler-maven-plugin.git
HTTPS git clone https://github.com/chrisregnier/closure-compiler-maven-plugin.git
SSH git clone git@github.com:chrisregnier/closure-compiler-maven-plugin.git
CLI gh repo clone chrisregnier/closure-compiler-maven-plugin
chrisregnier chrisregnier - increasing version to 0.0.3-SNAPSHOT 7b8b871 11 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ docs
๐Ÿ“ src
๐Ÿ“„ .gitignore
๐Ÿ“„ LICENSE
๐Ÿ“„ pom.xml
๐Ÿ“„ README.md
๐Ÿ“„ README.md

closure-compiler-maven-plugin =============================

Maven plugin to run the closure compiler on your javascript code base

Current options:

forceRecompile (boolean)

Forces the code to be recompiled even if things aren't dirty. true or false. can also use property 'closure.forceRecompile'

compilationLevel (string)

"ADVANCED\OPTIMIZATIONS", "SIMPLE\OPTIMIZATIONS", "WHITESPACE\_ONLY"

warningLevel (string)

"DEFAULT", "VERBOSE", "QUIET"

prettyPrint (boolean)

true or false

languageIn (string)

"ECMASCRIPT3", "ECMASCRIPT5", "ECMASCRIPT5\STRICT", "ECMASCRIPT6", "ECMASCRIPT6\STRICT", "NO\_TRANSPILE"

languageOut (string)

"ECMASCRIPT3", "ECMASCRIPT5", "ECMASCRIPT5\STRICT", "ECMASCRIPT6", "ECMASCRIPT6\STRICT", "NO\_TRANSPILE"

outputFile (File)

The output file to write everything to. defaults to: "${project.build.directory}/$project.artifactId}-${project.version}-min.js/

addDefaultExterns (boolean)

defaults to true

failOnWarnings (boolean)

defaults to false

failOnErrors (boolean)

defaults to true

externs (List)

a bunch of files that should be treated as externs

sources (List)

a bunch of files that should be treated as the source