summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-02-03 10:24:21 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-02-08 19:07:53 -0600
commit94a3c272ffd6676edbe59342d70bca49aaf676a5 (patch)
tree8f12832658f2bde2ed8beddd661c64610bbb184e /scripts
parent360e5bf631229e2aec71780a515a42e32d4c28e6 (diff)
downloadqtlocation-mapboxgl-94a3c272ffd6676edbe59342d70bca49aaf676a5.tar.gz
[core] Update gl-js; fix $id filters with GeoJSON source
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate-shaders.js2
-rw-r--r--scripts/generate-style-code.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/generate-shaders.js b/scripts/generate-shaders.js
index eb15ea907b..97b5bd11bc 100755
--- a/scripts/generate-shaders.js
+++ b/scripts/generate-shaders.js
@@ -3,7 +3,7 @@
const path = require('path');
const fs = require('fs');
-const inputPath = 'mapbox-gl-js/shaders';
+const inputPath = 'mapbox-gl-js/src/shaders';
const outputPath = 'src/mbgl/shaders';
require('./style-code');
diff --git a/scripts/generate-style-code.js b/scripts/generate-style-code.js
index de68c33ceb..bf9bef837a 100644
--- a/scripts/generate-style-code.js
+++ b/scripts/generate-style-code.js
@@ -2,7 +2,7 @@
const fs = require('fs');
const ejs = require('ejs');
-const spec = require('../mapbox-gl-js/js/style-spec').latest;
+const spec = require('../mapbox-gl-js/src/style-spec/reference/v8');
const colorParser = require('csscolorparser');
require('./style-code');