Skip to content

Commit

Permalink
Prepare for release on Bower
Browse files Browse the repository at this point in the history
To prepare for a release on Bower, added bower.json describing
the project. In the future, if new layers are added, they can
be added to the main list.

This is only for the 1.0.0-rc.1 version of Leaflet, as specified
in the dependencies.

Also added a .gitignore to ignore the bower_components directory
(and also test directories while I'm at it).
  • Loading branch information
evilkermit committed Jul 15, 2016
1 parent df1813a commit 76b207d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bower_components
test
tests
29 changes: 29 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "glayers.leaflet",
"description": "Generic map layers for Leaflet 1.0.0-rc.1",
"keywords": [
"leaflet",
"plugin",
"canvas",
"layer"
],
"homepage": "https://github.com/sumbera/glayers.leaflet",
"authors": [
"Stanislav Sumbera"
],
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"leaflet": ">= 1.0.0-rc.1"
},
"main": [
"L.CanvasLayer.js"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}

0 comments on commit 76b207d

Please sign in to comment.