https://github.com/mishoo/UglifyJS
Raw File
Tip revision: e9920f7ca162ce062cc481b876be293d7324a714 authored by Alex Lam S.L on 08 March 2017, 21:48:06 UTC
v2.8.10
Tip revision: e9920f7
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