https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 278577f3cb75e72320564805ee91be63e5f9c806 authored by Alex Lam S.L on 09 April 2017, 09:27:30 UTC
Merge pull request #1805 from alexlamsl/harmony-v2.8.22
Tip revision: 278577f
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