https://github.com/mishoo/UglifyJS
Revision fe51a91395f3b0a6ab812f3f42746d39efd9e80c authored by Alex Lam S.L on 05 March 2018, 16:45:58 UTC, committed by GitHub on 05 March 2018, 16:45:58 UTC
1 parent 951d87c
Raw File
Tip revision: fe51a91395f3b0a6ab812f3f42746d39efd9e80c authored by Alex Lam S.L on 05 March 2018, 16:45:58 UTC
handle negated constants correctly in `collapse_vars` (#2975)
Tip revision: fe51a91
appveyor.yml
environment:
  matrix:
    - nodejs_version: "0.10"
    - nodejs_version: "0.12"
    - nodejs_version: "4"
    - nodejs_version: "6"
    - nodejs_version: "8"
install:
  - ps: Install-Product node $env:nodejs_version
  - set UGLIFYJS_TEST_ALL=1
  - npm install
build: off
cache:
  - tmp
matrix:
  fast_finish: true
test_script:
  - node --version
  - npm --version
  - npm test
back to top