Revision 87c3a2c0ce2cfd86011d13688080a29520bb3c7f authored by Alex Lam S.L on 17 May 2017, 06:07:34 UTC, committed by GitHub on 17 May 2017, 06:07:34 UTC
Always emit space after colon when `options.output.beautify` is enabled.
1 parent baef8bf
Raw File
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