Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.5' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jul 18, 2022
2 parents 8b8d333 + a99e0bf commit 1e3f3c9
Show file tree
Hide file tree
Showing 5 changed files with 249 additions and 290 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## 1.0.5 - 2022.07.18
### Changed
* Add `allow-plugins` to `composer.json` to allow CI tests to work

## 1.0.4 - 2018.07.30
### Changed
* Code cleanup
Expand Down
10 changes: 9 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-eagerbeaver",
"description": "Allows you to eager load elements from auto-injected Entry elements on demand from your templates.",
"type": "craft-plugin",
"version": "1.0.4",
"version": "1.0.5",
"keywords": [
"craft",
"cms",
Expand All @@ -27,6 +27,14 @@
"require": {
"craftcms/cms": "^3.0.0"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"nystudio107\\eagerbeaver\\": "src/"
Expand Down
4 changes: 2 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ docker:
-t ${CONTAINER}:${TAG} \
--build-arg TAG=${TAG} \
--no-cache
build: clean docker install
build: docker install
${DOCKERRUN} \
run docs:build
rm -rf ${DOCSDEST}
Expand All @@ -34,7 +34,7 @@ install: docker
lint: docker install
${DOCKERRUN} \
run docs:lint
clean: docker
clean:
rm -rf node_modules/
rm -f package-lock.json
npm: docker
Expand Down
Loading

0 comments on commit 1e3f3c9

Please sign in to comment.