Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: npalm/action-docs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0a68f26fb4ab87c96f2f8924fc5cf4aa5696f1f1
Choose a base ref
..
head repository: npalm/action-docs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 05274556f3e2754f03af3622a1f2b87443f311de
Choose a head ref
Showing with 133 additions and 79 deletions.
  1. +1 −0 CHANGELOG.md
  2. +2 −2 package.json
  3. +130 −77 yarn.lock
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
### Bug Fixes

* **deps:** bump yaml from 2.5.0 to 2.5.1 ([#692](https://github.com/npalm/action-docs/issues/692)) ([92755ae](https://github.com/npalm/action-docs/commit/92755aeeec47a015b2dcbdfba12155b65985cfb6))
* upgrade replace-in-file and figlet depenencies ([e585c0f](https://github.com/npalm/action-docs/commit/e585c0fd9a1409e417c6bee2f62ff6d869ffa388))

## [2.4.3](https://github.com/npalm/action-docs/compare/v2.4.2...v2.4.3) (2024-09-03)

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest --testTimeout=10000 --collect-coverage --coverage",
"test": "jest --runInBand --testTimeout=10000 --collect-coverage --coverage",
"test-default": "jest --testTimeout=10000 --testPathIgnorePatterns=__tests__/cli.test.ts --collect-coverage --coverage",
"test-cli": "nyc jest --testTimeout=10000 --silent --testMatch=**/cli*test.ts && nyc report --reporter=lcov --reporter=html --report-dir=./coverage_nyc",
"test-action": "nyc jest --testTimeout=10000 --silent --testMatch=**/action-docs-action.test.ts --coverage=false",
@@ -76,4 +76,4 @@
"directories": {
"dist": "lib"
}
}
}
Loading