https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 1a78bbcd23e8db214872f1cd403f1b42503aaf9c authored by Richard van Velzen on 17 August 2016, 18:34:27 UTC
v2.7.3
Tip revision: 1a78bbc
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