-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
44 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
node_modules/ | ||
docs/ | ||
.log | ||
|
||
.vscode/ | ||
docs/ | ||
dist/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## CARTO GL | ||
|
||
![](./doc/carto-gl-capture.png) |
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,21 @@ | ||
{ | ||
"name": "renderer-prototype", | ||
"name": "carto-gl", | ||
"version": "0.0.0", | ||
"description": "", | ||
"scripts": { | ||
"sst": "mocha test/sstest/index.test.js --timeout 15000", | ||
"test": "./node_modules/.bin/eslint example/ contrib/ src/", | ||
"loc": "node_modules/sloc/bin/sloc src/ contrib/ example/", | ||
"build": "webpack", | ||
"build:watch": "webpack -w", | ||
"build-doc": "rm -rf docs/; node_modules/.bin/jsdoc --configure config/jsdoc/internal.json; node_modules/.bin/jsdoc --configure config/jsdoc/public.json", | ||
"publish": "git checkout gh-pages && git merge master && npm run build && npm run build-doc && git commit -a -m \"Auto generated gh-pages\" && git push && git checkout master" | ||
}, | ||
"description": "CARTO Vector library", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/CartoDB/renderer-prototype.git" | ||
"url": "git://github.com/CartoDB/renderer-prototype.git" | ||
}, | ||
"keywords": [], | ||
"author": "David Manzanares", | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/CartoDB/renderer-prototype/issues" | ||
}, | ||
"homepage": "https://github.com/CartoDB/renderer-prototype#readme", | ||
"devDependencies": { | ||
"chai": "^4.1.2", | ||
"eslint": "^4.15.0", | ||
"serve": "^6.4.9", | ||
"sloc": "^0.2.0", | ||
"webpack": "^3.8.1" | ||
"author": { | ||
"name": "CARTO", | ||
"url": "https://carto.com/" | ||
}, | ||
"contributors": [ | ||
"David Manzanares <[email protected]>", | ||
"Iago Lastra <[email protected]>", | ||
"Jesús Arroyo Torrens <[email protected]>" | ||
], | ||
"license": "BSD-3-Clause", | ||
"dependencies": { | ||
"@mapbox/vector-tile": "^1.3.0", | ||
"cartocolor": "^4.0.0", | ||
|
@@ -38,5 +25,22 @@ | |
"jsep": "^0.3.2", | ||
"lru-cache": "^4.1.1", | ||
"pbf": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"chai": "^4.1.2", | ||
"eslint": "^4.15.0", | ||
"serve": "^6.4.9", | ||
"sloc": "^0.2.0", | ||
"webpack": "^3.8.1" | ||
}, | ||
"main": "src/index.js", | ||
"scripts": { | ||
"sst": "mocha test/sstest/index.test.js --timeout 15000", | ||
"test": "./node_modules/.bin/eslint example/ contrib/ src/", | ||
"loc": "node_modules/sloc/bin/sloc src/ contrib/ example/", | ||
"build": "webpack", | ||
"build:watch": "webpack -w", | ||
"build-doc": "rm -rf docs/; node_modules/.bin/jsdoc --configure config/jsdoc/internal.json; node_modules/.bin/jsdoc --configure config/jsdoc/public.json", | ||
"publish": "git checkout gh-pages && git merge master && npm run build && npm run build-doc && git commit -a -m \"Auto generated gh-pages\" && git push && git checkout master" | ||
} | ||
} |
Empty file.
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
const path = require('path'); | ||
|
||
module.exports = | ||
{ | ||
module.exports = { | ||
devtool: 'source-map', | ||
entry: { | ||
mapbox: "./example/mapbox.js", | ||
mapbox: './examples/complete/mapbox.js', | ||
}, | ||
output: { | ||
path: path.join(__dirname, "dist"), | ||
filename: "[name].js" | ||
path: path.join(__dirname, 'dist'), | ||
filename: '[name].js' | ||
} | ||
}; | ||
}; |