├── .gitignore ├── .jshintrc ├── .npmignore ├── README.md ├── app ├── index.js └── templates │ ├── _bower.json │ ├── _package.json │ ├── bowerrc │ ├── editorconfig │ ├── gitignore │ ├── gulpfile.js │ ├── index.html │ ├── jshintrc │ ├── robots.txt │ ├── script.js │ └── style.css ├── package.json └── test ├── test-creation.js └── test-load.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | *.log -------------------------------------------------------------------------------- /app/templates/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/gulpfile.js -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * -------------------------------------------------------------------------------- /app/templates/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/script.js -------------------------------------------------------------------------------- /app/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/app/templates/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moklick/generator-leaflet/HEAD/test/test-load.js --------------------------------------------------------------------------------