Skip to content

Commit

Permalink
Rename Plovrfile.js --> Plovrfile.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ColCh committed Jan 20, 2014
1 parent 04bd3c9 commit 1e431c3
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 84 deletions.
83 changes: 0 additions & 83 deletions Plovrfile.js

This file was deleted.

80 changes: 80 additions & 0 deletions Plovrfile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{

"pretty-print": true,

"define": {

},

"id": "adv",

"inputs": "./dist/mel-anim.compiled.js",
"output-file": "./dist/mel-anim.adv.js",
"output-wrapper": "(function(){%output%})();",
"closure-library": "./goog-base.js",

"mode": "ADVANCED",
"level": "VERBOSE",

"checks": {
"globalThis": "OFF"
},

"externs": [ "externs.js" ],
"experimental-exclude-closure-library": true,
"output-charset": "UTF-8",


"experimental-compiler-options": {

"externExportsPath": "./melAnim-experns.js",
"externExports": true,

"closurePass": true,
"languageIn": "ECMASCRIPT5_STRICT",
"aggressiveVarCheck": "WARNING",
"checkSuspiciousCode": true,
"checkControlStructures": true,
"checkTypes": true,
"tightenTypes": false,
"checkRequires": "OFF",
"checkProvides": "OFF",
"foldConstants": true,
"coalesceVariableNames": true,
"deadAssignmentElimination": true,

"inlineConstantVars": false,
"inlineFunctions": true,
"inlineLocalFunctions": true,
"inlineProperties": true,
"inlineGetters": true,
"inlineVariables": true,
"inlineLocalVariables": true,

"assumeStrictThis": true,
"assumeClosuresOnlyCaptureReferences": true,
"smartNameRemoval": true,
"removeDeadCode": true,
"extractPrototypeMemberDeclarations": true,
"removeUnusedPrototypeProperties": true,
"removeUnusedClassProperties": true,
"removeUnusedVars": true,
"removeUnusedLocalVars": true,
"aliasExternals": true,
"collapseVariableDeclarations": true,
"groupVariableDeclarations": true,
"collapseAnonymousFunctions": true,
"convertToDottedProperties": true,
"rewriteFunctionExpressions": true,

"optimizeParameters": true,
"optimizeReturns": true,
"optimizeCalls": true,
"chainCalls": true,

"moveFunctionDeclarations": true,
"markAsCompiled": true

}

}
2 changes: 1 addition & 1 deletion plovr.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
java -jar ../plovr/plovr.jar build Plovrfile.js
java -jar ../plovr/plovr.jar build Plovrfile.json

0 comments on commit 1e431c3

Please sign in to comment.