Skip to content

Commit

Permalink
chore: Version 1.2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Apr 5, 2024
1 parent c933d79 commit 428d6c0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Twigpack Changelog

## 1.2.18 - UNRELEASED
### Added
* Add `phpstan` and `ecs` code linting
* Add `code-analysis.yaml` GitHub action

### Changed
* Updated docs to use node 20 & a new sitemap plugin
* PHPstan code cleanup
* ECS code cleanup

## 1.2.17 - 2022.04.26
### Changed
* Don't log the full exception on a Guzzle error, just log the message
Expand Down
20 changes: 19 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-twigpack",
"description": "Twigpack is a bridge between Twig and webpack, with manifest.json & webpack-dev-server HMR support",
"type": "craft-plugin",
"version": "1.2.17",
"version": "1.2.18",
"keywords": [
"craftcms",
"craft-plugin",
Expand All @@ -26,6 +26,24 @@
"require": {
"craftcms/cms": "^3.0.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"nystudio107\\twigpack\\": "src/"
Expand Down

0 comments on commit 428d6c0

Please sign in to comment.