Browse Source

build v2.2.0

update masonry to v3.3.0
pull/894/head v2.2.0
David DeSandro 10 years ago
parent
commit
9a5457acbd
  1. 2
      Gruntfile.js
  2. 4
      bower.json
  3. 2
      changelog.md
  4. 1631
      dist/isotope.pkgd.js
  5. 12
      dist/isotope.pkgd.min.js
  6. 2
      js/isotope.js
  7. 4
      package.json

2
Gruntfile.js

@ -66,7 +66,7 @@ module.exports = function( grunt ) {
var outFile = grunt.config.get('requirejs.pkgd.options.out');
var contents = grunt.file.read( outFile );
// get requireJS definition code
var definitionRE = /define\(\s*'isotope\/js\/isotope'(.|\n)+isotopeDefinition\s*\)/;
var definitionRE = /define\(\s*'isotope\/js\/isotope'(.|\n)+function\( Outlayer/;
var definition = contents.match( definitionRE )[0];
// remove name module
var fixDefinition = definition.replace( "'isotope/js/isotope',", '' )

4
bower.json

@ -1,13 +1,13 @@
{
"name": "isotope",
"version": "2.1.1",
"version": "2.2.0",
"description": "Filter and sort magical layouts",
"main": "js/isotope.js",
"dependencies": {
"get-size": "~1.2.2",
"matches-selector": ">=1 <2",
"outlayer": "~1.4.0",
"masonry": "3.2.x",
"masonry": "~3.3.0",
"fizzy-ui-utils": "~1.0.1"
},
"devDependencies": {

2
changelog.md

@ -1,5 +1,7 @@
# Changelog
## v2.2.0
+ Added [`arrangeComplete` event](http://isotope.metafizzy.co/events.html#arrangecomplete). Fixed [#732](https://github.com/metafizzy/isotope/issues/732)
+ Changed `bower.json` `main` to just `js/isotope.js`. Resolved [#879](https://github.com/metafizzy/isotope/issues/879)
+ Added [fizzy-ui-utils](https://github.com/metafizzy/fizzy-ui-utils)

1631
dist/isotope.pkgd.js vendored

File diff suppressed because it is too large Load Diff

12
dist/isotope.pkgd.min.js vendored

File diff suppressed because one or more lines are too long

2
js/isotope.js

@ -1,5 +1,5 @@
/*!
* Isotope v2.1.1
* Isotope v2.2.0
*
* Licensed GPLv3 for open source use
* or Isotope Commercial License for commercial use

4
package.json

@ -1,13 +1,13 @@
{
"name": "isotope-layout",
"version": "2.1.1",
"version": "2.2.0",
"description": "Filter and sort magical layouts",
"main": "js/isotope.js",
"dependencies": {
"get-size": "~1.2.2",
"desandro-matches-selector": ">=1 <2",
"outlayer": "~1.4.0",
"masonry-layout": "3.2.x",
"masonry-layout": "~3.3.0",
"fizzy-ui-utils": "~1.0.1"
},
"devDependencies": {

Loading…
Cancel
Save