https://github.com/mishoo/UglifyJS
Revision 09f9ae2de9fb2a328e088ab82ad1e49731c971fb authored by alexlamsl on 18 February 2017, 11:30:33 UTC, committed by alexlamsl on 21 February 2017, 05:29:58 UTC
reduce whitespaces from if-else statements

fixes #1482
closes #1483
1 parent 7e6331b
Raw File
Tip revision: 09f9ae2de9fb2a328e088ab82ad1e49731c971fb authored by alexlamsl on 18 February 2017, 11:30:33 UTC
improve `--beautify bracketize`
Tip revision: 09f9ae2
appveyor.yml
environment:
  matrix:
  - nodejs_version: "0.10"
  - nodejs_version: "0.12"
  - nodejs_version: "4.0"
  - nodejs_version: "6.0"

matrix:
  fast_finish: true

platform:
  - x86
  - x64

install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install

test_script:
  - node --version
  - npm --version
  - npm test

build: off
back to top