https://github.com/mishoo/UglifyJS
Raw File
Tip revision: a84564d1a8b1fda740963a577f4916d15a20138b authored by Alex Lam S.L on 31 March 2017, 04:26:10 UTC
v2.8.19
Tip revision: a84564d
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