Comparing version 1.0.2 to 1.0.3
/*! | ||
* Copyright (C) Flávio Reis (MIT License) | ||
* @package php-parser | ||
* @version 1.0.2 | ||
* @version 1.0.3 | ||
* @authors https://github.com/flavior121/uglify-php/graphs/contributors | ||
@@ -6,0 +6,0 @@ */ |
{ | ||
"name": "uglify-php", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "UglifyPHP is a JavaScript minifier and obfuscator for PHP files.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -19,3 +19,3 @@ # UglifyPHP | ||
UglifyPHP.minify("file.php", { // optional options object | ||
UglifyPHP.minify("C:/web/file.php", { // optional options object | ||
"excludes": [ | ||
@@ -43,3 +43,3 @@ '$GLOBALS', | ||
}, | ||
"output": "file_min.php" // If it's empty the promise will return the minified source code | ||
"output": "C:/web/file_min.php" // If it's empty the promise will return the minified source code | ||
}).then(function (source) { | ||
@@ -46,0 +46,0 @@ console.log(source); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8021