esri-leaflet
Advanced tools
Comparing version 2.0.0-beta.3 to 2.0.0-beta.4
@@ -8,8 +8,30 @@ # Change Log | ||
## [2.0.0-beta.2](v2.0.0-beta.2) | ||
## [2.0.0-beta.4](v2.0.0-beta.4) | ||
### Changed | ||
* Tests are now run against the minified production code for more safty. | ||
### Fixed | ||
* Features no longer flicker when zooming in/out on `FeatureLayer` | ||
### Added | ||
* Various release process optimizations. | ||
* Support for JSPM in package.json. Now you can `import featureLayer from 'esri-leaflet/src/Layers/FeatureLayer';` for more compact builds but be aware of [caveats](http://blog.izs.me/post/44149270867/why-no-directories-lib-in-node-the-less-snarky) | ||
* Support for browserify in the package.json. Now you can `var featureLayer = require('esri-leaflet/src/Layers/FeatureLayer');` for more compact builds but be aware of [caveats](http://blog.izs.me/post/44149270867/why-no-directories-lib-in-node-the-less-snarky) | ||
## [2.0.0-beta.3](v2.0.0-beta.3) | ||
### Fixed | ||
* Files not included in git tag. | ||
## [2.0.0-beta.2](v2.0.0-beta.2) | ||
### Fixed | ||
* Release process bugs. | ||
## [2.0.0-beta.1](v2.0.0-beta.1) | ||
@@ -309,3 +331,5 @@ | ||
[unreleased]: https://github.com/esri/esri-leaflet/compare/v2.0.0-beta.2...HEAD | ||
[unreleased]: https://github.com/esri/esri-leaflet/compare/v2.0.0-beta.4...HEAD | ||
[v2.0.0-beta.4]: https://github.com/esri/esri-leaflet/compare/v2.0.0-beta.3...v2.0.0-beta.4 | ||
[v2.0.0-beta.3]: https://github.com/esri/esri-leaflet/compare/v2.0.0-beta.2...v2.0.0-beta.3 | ||
[v2.0.0-beta.2]: https://github.com/esri/esri-leaflet/compare/v2.0.0-beta.1...v2.0.0-beta.2 | ||
@@ -312,0 +336,0 @@ [v2.0.0-beta.1]: https://github.com/esri/esri-leaflet/compare/v1.0.0...v2.0.0-beta.1 |
{ | ||
"name": "esri-leaflet", | ||
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.", | ||
"version": "2.0.0-beta.3", | ||
"version": "2.0.0-beta.4", | ||
"author": "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)", | ||
"browserify": { | ||
"transform": [ | ||
"babelify" | ||
] | ||
}, | ||
"bugs": { | ||
@@ -21,2 +16,8 @@ "url": "https://github.com/esri/esri-leaflet/issues" | ||
}, | ||
"browserify": { | ||
"transform": [["babelify", { | ||
"whitelist": ["es6.modules"], | ||
"loose": ["es6.modules"] | ||
}]] | ||
}, | ||
"devDependencies": { | ||
@@ -48,3 +49,3 @@ "assemble": "^0.4.37", | ||
"phantomjs": "^1.9.17", | ||
"rollup": "^0.10.0", | ||
"rollup": "^0.11.4", | ||
"semistandard": "^6.1.2", | ||
@@ -60,8 +61,7 @@ "sinon": "^1.11.1", | ||
"homepage": "http://esri.github.io/esri-leaflet", | ||
"jsnext:main": "./index.js", | ||
"jsnext:main": "src/EsriLeaflet.js", | ||
"jspm": { | ||
"main": "./index.js", | ||
"directories": { | ||
"lib": "./lib" | ||
}, | ||
"files": [ | ||
"src/**/*.js" | ||
], | ||
"registry": "npm", | ||
@@ -79,3 +79,3 @@ "format": "es6" | ||
"license": "Apache-2.0", | ||
"main": "dist/esri-leaflet.js", | ||
"main": "src/EsriLeaflet.js", | ||
"readmeFilename": "README.md", | ||
@@ -87,10 +87,10 @@ "repository": { | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"build": "./scripts/build.js", | ||
"lint": "semistandard src/**/*.js", | ||
"posttest": "rm ./dist/esri-leaflet-src.js", | ||
"prepublish": "./scripts/build.js", | ||
"pretest": "npm run lint && esperanto -i src/EsriLeaflet.js -o ./dist/esri-leaflet-src.js --skip=leaflet --t umd --strict --name L.esri --bundle -m inline", | ||
"pretest": "npm run build", | ||
"test": "npm run lint && karma start", | ||
"release": "./scripts/release.sh", | ||
"start": "grunt", | ||
"test": "karma start" | ||
"start": "grunt" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
418511
273
2