Skip to content

Commit

Permalink
Merge pull request #132 from WhyAsh5114/svelte-5-stable
Browse files Browse the repository at this point in the history
chore: update packages and docs, no longer need --force flag
  • Loading branch information
WhyAsh5114 authored Oct 20, 2024
2 parents 716d0a5 + 87db1c6 commit deed156
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 153 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Make sure you have the following tools installed:
```
3. Install dependencies:
```bash
npm ci --force
npm ci
```
4. Set up your environment variables. Copy `.env.example` to `.env` and configure the necessary values.

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-environment/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'Setup Node.js and Install Dependencies'
description: 'Checks out the code, sets up Node.js, and installs dependencies using npm ci --force'
description: 'Checks out the code, sets up Node.js, and installs dependencies using npm ci'
runs:
using: 'composite'
steps:
Expand All @@ -11,4 +11,4 @@ runs:

- name: Install dependencies
shell: bash
run: npm ci --force
run: npm ci
2 changes: 1 addition & 1 deletion .github/workflows/migrate_prod_DB.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci --force
run: npm ci
- name: Apply all pending migrations to production database
run: npx prisma migrate deploy
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Follow these instructions to get a copy of the project up and running on your lo
2. Install dependencies:

```bash
npm ci --force
npm ci
```

3. Set up environment variables:
Expand Down
Loading

0 comments on commit deed156

Please sign in to comment.