Skip to content

Commit

Permalink
Merge pull request #391 from itk-dev/feature/composer-update
Browse files Browse the repository at this point in the history
Updated composer packages
  • Loading branch information
rimi-itk authored Apr 25, 2024
2 parents 6508d76 + 9319004 commit 8f6b0f5
Show file tree
Hide file tree
Showing 114 changed files with 1,400 additions and 1,157 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
node-version: '16'
- run: yarn install
- name: javascript-standard-style
run: yarn check-coding-standards/standard
run: yarn coding-standards-check/standard

markdownlint:
runs-on: ubuntu-20.04
Expand All @@ -257,7 +257,7 @@ jobs:
node-version: '16'
- run: yarn install
- name: markdownlint
run: yarn check-coding-standards/markdownlint
run: yarn coding-standards-check/markdownlint

translations:
runs-on: ubuntu-20.04
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ about writing changes to this log.

## [Unreleased]

- [PR-391](https://github.com/itk-dev/naevnssekretariatet/pull/391)
Updated composer packages
- [PR-377](https://github.com/itk-dev/naevnssekretariatet/pull/377)
Improved `tvist1:digital-post-envelope:list` command and added Digital post
debug command.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,19 +425,19 @@ we decided to adhere to in this project.
* Javascript files (Standard with standard settings)

```sh
docker compose run --rm node yarn check-coding-standards/standard
docker compose run --rm node yarn coding-standards-check/standard
```

* Sass files (Sass guidelines)

```sh
docker compose run --rm node yarn check-coding-standards/stylelint
docker compose run --rm node yarn coding-standards-check/stylelint
```

* Markdown files (markdownlint standard rules)

```sh
docker compose run --rm node yarn check-coding-standards/markdownlint
docker compose run --rm node yarn coding-standards-check/markdownlint
```

## Code analysis
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,21 +136,21 @@
"post-update-cmd": [
"@auto-scripts"
],
"check-coding-standards/php-cs-fixer": [
"coding-standards-check/php-cs-fixer": [
"php-cs-fixer --config=.php-cs-fixer.dist.php fix --dry-run"
],
"check-coding-standards/twigcs": [
"coding-standards-check/twigcs": [
"twigcs templates"
],
"check-coding-standards": [
"@check-coding-standards/php-cs-fixer",
"@check-coding-standards/twigcs"
"coding-standards-check": [
"@coding-standards-check/php-cs-fixer",
"@coding-standards-check/twigcs"
],
"apply-coding-standards/php-cs-fixer": [
"coding-standards-apply/php-cs-fixer": [
"php-cs-fixer --config=.php-cs-fixer.dist.php fix"
],
"apply-coding-standards": [
"@apply-coding-standards/php-cs-fixer"
"coding-standards-apply": [
"@coding-standards-apply/php-cs-fixer"
],
"code-analysis/phpstan": [
"phpstan analyse src tests"
Expand Down
Loading

0 comments on commit 8f6b0f5

Please sign in to comment.