Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: google/closure-compiler-npm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v20190215.0.2
Choose a base ref
...
head repository: google/closure-compiler-npm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v20190301.0.0
Choose a head ref
  • 4 commits
  • 9 files changed
  • 3 contributors

Commits on Mar 1, 2019

  1. Copy the full SHA
    f7b6db4 View commit details
  2. Merge pull request #129 from google/add-clean

    Add a clean build script to facilitate removing build artifacts
    brad4d authored Mar 1, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    938a9cb View commit details

Commits on Mar 5, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c4a1f3a View commit details
  2. v20190301.0.0

    lauraharker committed Mar 5, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    367ccf9 View commit details
9 changes: 9 additions & 0 deletions build-scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
rm -rf ./packages/google-closure-compiler/contrib
rm ./packages/google-closure-compiler-java/compiler.jar
rm ./packages/google-closure-compiler-js/jscomp.js
rm ./packages/google-closure-compiler-linux/compiler.jar
rm ./packages/google-closure-compiler-linux/compiler
rm ./packages/google-closure-compiler-osx/compiler.jar
rm ./packages/google-closure-compiler-osx/compiler
cd ./compiler && mvn clean
2 changes: 1 addition & 1 deletion compiler
Submodule compiler updated 186 files
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "20190215.0.2",
"version": "20190301.0.0",
"ignoreChanges": [
"**/compiler/**"
]
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -32,6 +32,7 @@
},
"scripts": {
"build": "./build-scripts/build.sh",
"test": "./build-scripts/test.sh"
"test": "./build-scripts/test.sh",
"clean": "./build-scripts/clean.sh"
}
}
2 changes: 1 addition & 1 deletion packages/google-closure-compiler-java/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-closure-compiler-java",
"version": "20190215.0.2",
"version": "20190301.0.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler using Java",
"main": "index.js",
"repository": "https://github.com/google/closure-compiler-npm/tree/master/packages/google-closure-compiler-java",
2 changes: 1 addition & 1 deletion packages/google-closure-compiler-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-closure-compiler-js",
"version": "20190215.0.2",
"version": "20190301.0.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler using Java",
"main": "jscomp.js",
"repository": "https://github.com/google/closure-compiler-npm/tree/master/packages/google-closure-compiler-js",
2 changes: 1 addition & 1 deletion packages/google-closure-compiler-linux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-closure-compiler-linux",
"version": "20190215.0.2",
"version": "20190301.0.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler using Java",
"main": "index.js",
"repository": "https://github.com/google/closure-compiler-npm/tree/master/packages/google-closure-compiler-linux",
2 changes: 1 addition & 1 deletion packages/google-closure-compiler-osx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-closure-compiler-osx",
"version": "20190215.0.2",
"version": "20190301.0.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler using Java",
"main": "index.js",
"repository": "https://github.com/google/closure-compiler-npm/tree/master/packages/google-closure-compiler-osx",
10 changes: 5 additions & 5 deletions packages/google-closure-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-closure-compiler",
"version": "20190215.0.2",
"version": "20190301.0.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
"repository": "https://github.com/google/closure-compiler-npm/tree/master/packages/google-closure-compiler",
"keywords": [
@@ -37,15 +37,15 @@
"homepage": "https://developers.google.com/closure/compiler/",
"dependencies": {
"chalk": "^1.0.0",
"google-closure-compiler-java": "^20190215.0.2",
"google-closure-compiler-js": "^20190215.0.2",
"google-closure-compiler-java": "^20190301.0.0",
"google-closure-compiler-js": "^20190301.0.0",
"minimist": "^1.2.0",
"vinyl": "^2.0.1",
"vinyl-sourcemaps-apply": "^0.2.0"
},
"optionalDependencies": {
"google-closure-compiler-linux": "^20190215.0.2",
"google-closure-compiler-osx": "^20190215.0.2"
"google-closure-compiler-linux": "^20190301.0.0",
"google-closure-compiler-osx": "^20190301.0.0"
},
"devDependencies": {
"gulp": "^3.9.0",