mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-02-01 16:46:24 +00:00
* Compile with buble and bundle with webpack * Reduce number of dependencies * Support for tree-shaking * Standalone, easy-to-understand example with small package.json * Tests now work under Node.js even when loading mapbox-gl. * Fix travis config
20 lines
301 B
YAML
20 lines
301 B
YAML
language: node_js
|
|
os: linux
|
|
sudo: required
|
|
dist: trusty
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- mesa-utils
|
|
- xvfb
|
|
- libgl1-mesa-dri
|
|
- libglapi-mesa
|
|
- libosmesa6
|
|
- libxi-dev
|
|
node_js:
|
|
- '6'
|
|
- '7'
|
|
before_script:
|
|
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
|
|
- npm run build
|