https://github.com/mishoo/UglifyJS
Revision 70d56c951a7dc0d453261c8cdcf21500728f98d7 authored by Tim Malone on 11 October 2017, 11:48:43 UTC, committed by Alex Lam S.L on 11 October 2017, 11:48:43 UTC
Moves this README note to underneath the 'url' rather than 'root' option.
1 parent b810e2f
Raw File
Tip revision: 70d56c951a7dc0d453261c8cdcf21500728f98d7 authored by Tim Malone on 11 October 2017, 11:48:43 UTC
Update README.md - sourceMappingURL directive note (#2355)
Tip revision: 70d56c9
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