webpack-contrib / closure-webpack-plugin

Webpack Google Closure Compiler and Closure Library plugin -
https://developers.google.com/closure/
MIT License
434 stars 60 forks source link

fix: CI by removing duplicate version field #152

Closed ian-craig closed 3 years ago

ian-craig commented 3 years ago

Looks like all CI builds are failing with the error

#!/bin/sh -eo pipefail
# Unable to parse YAML
# while constructing a mapping
#  in 'string', line 1, column 1:
#     unit_tests: &unit_tests
#     ^
# found duplicate key version
#  in 'string', line 112, column 1:
#     version: 2.0
#     ^

The version: field is indeed declared twice in the config (with the same value), so I'm removing one to fix.

ian-craig commented 3 years ago

@ChadKillingsworth are you still the maintainer for this repo? I have a couple of other pull requests (#148, #149) which would be great to get merged. Both failed CI on this config issue so I thought I'd push a fix for that too to help you validate.

ChadKillingsworth commented 3 years ago

Thanks!