https://github.com/mishoo/UglifyJS
Raw File
Tip revision: 873755b35cbac8f9a943fd3cd6179bfb8eab5df1 authored by Alex Lam S.L on 01 October 2017, 06:41:52 UTC
harmony-v3.1.3
Tip revision: 873755b
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