https://github.com/mishoo/UglifyJS
Revision b70591be1a603d3c1728e6563691c3a192023d3f authored by Alex Lam S.L on 05 March 2017, 05:13:44 UTC, committed by GitHub on 05 March 2017, 05:13:44 UTC
1 parent b33e7f8
Raw File
Tip revision: b70591be1a603d3c1728e6563691c3a192023d3f authored by Alex Lam S.L on 05 March 2017, 05:13:44 UTC
handle variable declaration within catch blocks (#1546)
Tip revision: b70591b
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