https://github.com/mishoo/UglifyJS
Raw File
Tip revision: dfe4f6c6de3971e48b6a5a807e17314d65cdc9b5 authored by Alex Lam S.L on 15 October 2017, 18:44:17 UTC
v3.1.4
Tip revision: dfe4f6c
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