https://github.com/mishoo/UglifyJS
Revision f6c805ae1d7ffe76f71d3deaff2f49a6526bbd7b authored by Alex Lam S.L on 15 May 2017, 22:34:32 UTC, committed by GitHub on 15 May 2017, 22:34:32 UTC
1 parent 9464d3c
Raw File
Tip revision: f6c805ae1d7ffe76f71d3deaff2f49a6526bbd7b authored by Alex Lam S.L on 15 May 2017, 22:34:32 UTC
print package name alongside version in CLI (#1946)
Tip revision: f6c805a
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