https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 2dde41615a22ec16b52028a5b09a42b50e4ee094 authored by Alex Lam S.L on 02 July 2017, 09:24:22 UTC
v3.0.23
Tip revision: 2dde416
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