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: algolia/npm-search
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1397be0450eff0044b910102304eaf6dca36f82f
Choose a base ref
..
head repository: algolia/npm-search
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 436b577d8e115f3247e45d6e215a35f2696a5568
Choose a head ref
Showing with 149 additions and 147 deletions.
  1. +1 −1 .nvmrc
  2. +2 −2 Dockerfile
  3. +5 −5 package.json
  4. +141 −139 yarn.lock
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.20.4
18.20.6
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base ----
FROM node:18.20.4-alpine AS base
FROM node:18.20.6-alpine AS base

# ------------------
# package.json cache
@@ -52,7 +52,7 @@ RUN true \
# ---- Final ----
# Resulting new, minimal image
# This image must have the minimum amount of layers
FROM node:18.20.4-alpine as final
FROM node:18.20.6-alpine as final

ENV NODE_ENV production

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@
"p-queue": "6.6.2",
"promise-rat-race": "1.5.1",
"throttled-queue": "^2.1.4",
"traverse": "0.6.10",
"traverse": "0.6.11",
"truncate-utf8-bytes": "1.0.2"
},
"devDependencies": {
@@ -62,7 +62,7 @@
"@types/truncate-utf8-bytes": "1.0.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"dotenv": "16.4.5",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-algolia": "22.0.0",
"eslint-config-prettier": "8.5.0",
@@ -71,15 +71,15 @@
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-jsdoc": "46.10.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"husky": "8.0.1",
"jest": "29.7.0",
"lint-staged": "13.0.3",
"pre-commit": "1.2.2",
"prettier": "3.3.3",
"prettier": "3.4.2",
"renovate-config-algolia": "2.2.0",
"semantic-release": "24.2.1",
"semantic-release": "24.2.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.4.5",
Loading