https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 75e2748b1607c7d524c9d9faa76927bb8691f929 authored by Alex Lam S.L on 19 May 2017, 09:44:50 UTC
v2.8.27
Tip revision: 75e2748
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