https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 2fd86d3cb02c2bcde81633c0096b308e2809ea00 authored by Alex Lam S.L on 14 March 2017, 06:29:32 UTC
Merge pull request #1601 from alexlamsl/harmony-v2.8.12
Tip revision: 2fd86d3
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