weboptimizer 4.0.18 → 4.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ejsLoader.js CHANGED
@@ -39,7 +39,6 @@ export const log = new Logger({
39
39
  * @returns Transformed string.
40
40
  */
41
41
  export const loader = async function (source) {
42
- console.log('AA', this.async, this.async());
43
42
  const callback = this.async();
44
43
  const givenOptions = convertSubstringInPlainObject(extend(true, {
45
44
  compiler: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "4.0.18",
3
+ "version": "4.0.20",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -95,7 +95,7 @@
95
95
  "babel-plugin-polyfill-corejs3": "^1.0.0",
96
96
  "babel-plugin-transform-rewrite-imports": "^1.5.4",
97
97
  "babel-preset-minify": "^0.5.2",
98
- "clientnode": "4.0.1442",
98
+ "clientnode": "4.0.1444",
99
99
  "core-js": "^3.49.0",
100
100
  "ejs": "^6.0.1",
101
101
  "exports-loader": "^5.0.0",
@@ -247,9 +247,6 @@ if (configuration.injection.external.modules === '__implicit__')
247
247
  external: exportFormat
248
248
  } = configuration.exportFormat;
249
249
  let reference = exportFormat === 'umd' || typeof result === 'string' ? result : result[exportFormat];
250
- console.log();
251
- console.log('EX', reference, exportFormat);
252
- console.log();
253
250
  if (typeof reference === 'string' && ['window', 'var'].includes(exportFormat)) reference = convertToValidVariableName(reference);
254
251
  callback(undefined, reference, exportFormat);
255
252
  return;