Skip to content

Commit

Permalink
Add Grunt driven build process to compress and minify source and CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
vicchi committed Mar 16, 2015
1 parent 5b990d4 commit 2c90830
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/node_modules/
1 change: 1 addition & 0 deletions dist/leaflet.groupedlayercontrol.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/leaflet.groupedlayercontrol.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/leaflet.groupedlayercontrol.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions package.json
@@ -0,0 +1,39 @@
{
"name": "Leaflet.groupedlayercontrol",
"version": "0.2.0",
"description": "A Leaflet layer control with support for grouping overlays together",
"main": "dist/leaflet.groupedlayercontrol.min.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:ismyrnow/Leaflet.groupedlayercontrol.git"
},
"keywords": [
"leaflet",
"overlay",
"groups",
"grouped",
"control",
"plugin"
],
"author": "Ishmael Smyrnow",
"license": "MIT",
"bugs": {
"url": "https://github.com/ismyrnow/Leaflet.groupedlayercontrol/issues"
},
"homepage": "https://github.com/ismyrnow/Leaflet.groupedlayercontrol",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-cssmin": "^0.12.2",
"grunt-contrib-uglify": "^0.8.0",
"load-grunt-tasks": "^3.1.0"
},
"dependencies": {
"leaflet": "^0.7.3"
}
}

0 comments on commit 2c90830

Please sign in to comment.