https://github.com/mishoo/UglifyJS
Revision 14e712ee802da2a6199653268f8519187ece2c51 authored by Alex Lam S.L on 09 May 2018, 22:16:35 UTC, committed by GitHub on 09 May 2018, 22:16:35 UTC
1 parent f83adcc
Raw File
Tip revision: 14e712ee802da2a6199653268f8519187ece2c51 authored by Alex Lam S.L on 09 May 2018, 22:16:35 UTC
fix corner case in call binding (#3128)
Tip revision: 14e712e
appveyor.yml
environment:
  matrix:
    - nodejs_version: "0.10"
    - nodejs_version: "0.12"
    - nodejs_version: "4"
    - nodejs_version: "6"
    - nodejs_version: "8"
install:
  - ps: Install-Product node $env:nodejs_version
  - set UGLIFYJS_TEST_ALL=1
  - npm install
build: off
cache:
  - tmp
matrix:
  fast_finish: true
test_script:
  - node --version
  - npm --version
  - npm test
back to top