https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 0af80eca22c57af9e945d7fe5def25b07ef6db06 authored by Alex Lam S.L on 14 June 2017, 19:19:18 UTC
v2.8.29
Tip revision: 0af80ec
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