Skip to content

Commit

Permalink
Merge pull request #333 from fieg/release-3.0.0-beta.4
Browse files Browse the repository at this point in the history
Release 3.0.0-beta.4 Public Beta
  • Loading branch information
fieg authored Jul 7, 2019
2 parents 8f7bc82 + 318e4be commit 282bfc9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ before_script:

script:
- npm run lint
- cypress run --record --key $CYPRESS_KEY
- if [ "$CYPRESS_KEY" = "" ]; then cypress run; fi
- if [ "$CYPRESS_KEY" != "" ]; then cypress run --record --key $CYPRESS_KEY; fi
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ up:
open http://localhost:8080
.PHONY: up

bump:
npm --no-git-tag-version version $(SEMVER);
.PHONY: bump

build: guard-SEMVER
mkdir $(BUILD_DIR)
git archive HEAD | tar -x -C $(BUILD_DIR)
cd $(BUILD_DIR); \
npm --no-git-tag-version version $(SEMVER); \
npm install; \
npm run build --production;
.PHONY: build
Expand Down
2 changes: 1 addition & 1 deletion examples/articles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"jquery-ias"
],
"dependencies": {
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.3"
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.4"
},
"devDependencies": {
"parcel-bundler": "^1.10.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/blocks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"jquery-ias"
],
"dependencies": {
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.3"
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.4"
},
"devDependencies": {
"parcel-bundler": "^1.10.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/masonry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"jquery-ias"
],
"dependencies": {
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.3",
"@webcreate/infinite-ajax-scroll": "^3.0.0-beta.4",
"imagesloaded": "^4.1.4",
"masonry-layout": "^4.2.2"
},
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webcreate/infinite-ajax-scroll",
"version": "3.0.0-beta.3",
"version": "3.0.0-beta.4",
"title": "Infinite Ajax Scroll",
"description": "Turn your existing pagination into infinite scrolling pages with ease",
"license": "AGPL-3.0-only",
Expand Down

0 comments on commit 282bfc9

Please sign in to comment.