https://github.com/mishoo/UglifyJS
Revision 504a436e9daac89f5226280e01ae2818fe4e8436 authored by kzc on 13 May 2017, 18:12:14 UTC, committed by Alex Lam S.L on 13 May 2017, 18:12:14 UTC
1 parent 3ca9022
Raw File
Tip revision: 504a436e9daac89f5226280e01ae2818fe4e8436 authored by kzc on 13 May 2017, 18:12:14 UTC
Tweak README Notes (#1934)
Tip revision: 504a436
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