Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,13 @@ db/data/nhs-gp-practices.csv
# Python
__pycache__/
*.pyc

# Yarn without zero-installs
# See https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ python 3.14.4
ruby 4.0.3
shellcheck 0.11.0
yamllint 1.38.0
yarn 4.9.4
yarn 4.14.1
uv 0.11.7
6 changes: 6 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
approvedGitRepositories:
- "**"

enableScripts: true

nodeLinker: node-modules
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update -qq && \

# Install JavaScript dependencies
ARG NODE_VERSION=22.15.0
ARG YARN_VERSION=1.22.19
ARG YARN_VERSION=4.14.1
ENV PATH=/usr/local/node/bin:$PATH
RUN curl -sL --ssl https://github.com/nodenv/node-build/archive/master.tar.gz | tar xz -C /tmp/ && \
/tmp/node-build-master/bin/node-build "${NODE_VERSION}" /usr/local/node && \
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "app",
"private": "true",
"dependencies": {
"@hotwired/turbo-rails": "^8.0.23",
"accessible-autocomplete": "^3.0.1",
Expand Down Expand Up @@ -44,5 +43,6 @@
}
]
}
}
},
"packageManager": "yarn@4.14.1"
}
Loading
Loading