https://github.com/mishoo/UglifyJS
Revision dd31d12a9110b34c1b45a72b6e1f2b64c2d7afe9 authored by Anthony Van de Gejuchte on 18 February 2017, 10:56:18 UTC, committed by alexlamsl on 18 February 2017, 10:56:18 UTC
1 parent 7f8d72d
Raw File
Tip revision: dd31d12a9110b34c1b45a72b6e1f2b64c2d7afe9 authored by Anthony Van de Gejuchte on 18 February 2017, 10:56:18 UTC
Improve optimizing `function() { if(c){return foo} bar();}`
Tip revision: dd31d12
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