Skip to content

Commit c45c9bc

Browse files
committed
Pin closure-library and closure-compiler versions
1 parent af3e243 commit c45c9bc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/webchannel-wrapper/gulpfile.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ const rollupSourcemaps = require('rollup-plugin-sourcemaps');
2727

2828
// The optimization level for the JS compiler.
2929
// Valid levels: WHITESPACE_ONLY, SIMPLE_OPTIMIZATIONS, ADVANCED_OPTIMIZATIONS.
30-
// TODO: Add ability to pass this in as a flag.
3130
const OPTIMIZATION_LEVEL = 'ADVANCED_OPTIMIZATIONS';
3231

33-
// For minified builds, wrap the output so we avoid leaking global variables.
3432
// For minified builds, wrap the output so we avoid leaking global variables.
3533
const CJS_WRAPPER_PREFIX = `(function() {var firebase = require('@firebase/app').default;`;
3634
const CJS_WRAPPER_SUFFIX =
@@ -56,7 +54,7 @@ const closureDefines = [
5654
];
5755

5856
/**
59-
* Builds the core Firebase-auth JS.
57+
* Generates a closure compiler build of webchannel-wrapper.
6058
* @param {string} filename name of the generated file
6159
* @param {string} prefix prefix to the compiled code
6260
* @param {string} suffix suffix to the compiled code

packages/webchannel-wrapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"license": "Apache-2.0",
1818
"devDependencies": {
1919
"google-closure-compiler": "20200112.0.0",
20-
"google-closure-library": "20200224.0.0",
20+
"google-closure-library": "20200112.0.0",
2121
"gulp": "4.0.2",
2222
"gulp-sourcemaps": "2.6.5",
2323
"rollup": "2.0.6",

0 commit comments

Comments
 (0)