diff --git a/.npmignore b/.npmignore deleted file mode 100644 index e5caa89..0000000 --- a/.npmignore +++ /dev/null @@ -1,28 +0,0 @@ -# Mac -.DS_Store -Icon -._* -.Spotlight-V100 - -# SublimeText -/*.sublime-project -*.sublime-workspace -*.sublime-project -.idea/* - -# Node -node_modules - -# Coverage -coverage - -# Debugging Files -debug.html - -# for a tidy, compact npm release -debug/ -spec/ -scripts/ -example.png -.npmignore -*.zip \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ea5178..f5ae9a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Upcoming changes][Unreleased] +## [2.2.14] - 2019-03-11 + +### Fixed + +* Handle attempts to scroll on mobile devices appropriately. (🙏pmacMaps🙏 [#215](https://github.com/Esri/esri-leaflet-geocoder/pull/215)) + ## [2.2.13] - 2018-07-03 ### Fixed diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 0cc22bd..c406542 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,6 +1,43 @@ -# Code of conduct +# Code of Conduct -**TL;DR**
-We expect folks that participate in both our online and [IRL](http://www.urbandictionary.com/define.php?term=IRL) communities to be kind and considerate of others at all times. +v1.0.0, February 2019 -Esri's official CoC text can be found at http://www.esri.com/events/code-of-conduct +> Adapted from Esri's [Conference and Community Spaces Code of Conduct](https://www.esri.com/en-us/about/events/code-of-conduct) + +## Purpose + +At Esri, we believe geography can make the world a better place. In adopting this Community Code of Conduct, we as Esri employees are committed to fostering a welcoming environment for collaboration, creativity, and the free exchange of ideas for developing, maintaining, and using open source GIS software. We aim to empower all participants to actively engage and help build a friendly and safe Esri open source developer community. + +Whether publicly or privately, and whether in-person or online, we expect all members of this community to interact both professionally and without harassment toward others, regardless of race, color, creed, gender, gender identity, religion, marital status, domestic partner status, genetic information, age, national origin or ancestry, military or veteran status, sexual orientation, or either physical or mental disability. + +## Expectations + +Behavior we encourage: + +- Share your ideas, but also listen to others +- Be professional, kind, and considerate in technical discussions and disagreements +- Respect personal boundaries and preferences +- Respect all project contributors and maintainers + +Inappropriate/unacceptable behavior is anything hurtful that interferes with other people’s experience and participation in our community. This includes: + +- Harassment, aggression, and intimidation +- Slurs +- Derogatory jokes and statements +- Foul or obscene language +- Stalking +- Sharing graphic or derogatory pictures, drawings, or cartoons +- _Ad hominem_ or personal attacks and insults +- Unwanted or offensive letters or poems +- Offensive email, voicemail messages, or social media postings +- Personal threats + +## Reporting + +Repository maintainers reserve the right to remove offensive content. To report inappropriate behavior, you can also contact [events@esri.com](mailto:events@esri.com). + +## Consequences + +Violations of this Code of Conduct may result in: + * Disqualification from Esri Events and Conferences + * Being blocked from Esri's [GitHub Organization](https://help.github.com/articles/blocking-a-user-from-your-organization/) \ No newline at end of file diff --git a/package.json b/package.json index a7e79df..2838b0d 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,12 @@ { "name": "esri-leaflet-geocoder", "description": "Esri Geocoding utility and search plugin for Leaflet.", - "version": "2.2.13", + "version": "2.2.14", "author": "Patrick Arlt (http://patrickarlt.com)", "contributors": [ "Patrick Arlt (http://patrickarlt.com)", - "John Gravois (http://johngravois.com)" + "John Gravois (http://johngravois.com)", + "Patrick McKinney" ], "dependencies": { "esri-leaflet": "^2.1.4", @@ -40,6 +41,10 @@ "uglify-js": "^2.6.1", "watch": "^0.17.1" }, + "files": [ + "src/**/*.js", + "dist/**" + ], "homepage": "https://github.com/Esri/esri-leaflet-geocoder", "jsnext:main": "src/EsriLeafletGeocoding.js", "module": "src/EsriLeafletGeocoding.js",