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: sir-gon/algorithm-exercises-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cb760818a3f734dda267430c1d84b2369e682510
Choose a base ref
..
head repository: sir-gon/algorithm-exercises-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 04eef7731010d824e45f5d2dc5a366cc7fb66f7c
Choose a head ref
Showing with 67 additions and 67 deletions.
  1. +4 −4 Makefile
  2. +62 −62 package-lock.json
  3. +1 −1 package.json
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -46,10 +46,10 @@ env:
@echo "################################################################################"

clean:
${NPM} run jest:clean
rm -vfr ./dist
rm -vfr ./node_modules
rm -vfr ./coverage
${NPM} run jest:clean || true
rm -vfr ./dist || true
rm -vfr ./node_modules || true
rm -vfr ./coverage || true
mkdir -p ./coverage
touch ./coverage/.gitkeep

124 changes: 62 additions & 62 deletions 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
@@ -33,7 +33,7 @@
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.0.2",
"eslint-config-prettier": "10.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",