Skip to content

Commit 8f9812c

Browse files
committed
Use pnpm instead of npm
1 parent cc05d43 commit 8f9812c

13 files changed

+13959
-21487
lines changed

.github/workflows/ci.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ jobs:
5757
- name: Checkout code
5858
uses: actions/checkout@v4
5959

60+
- name: Install pnpm
61+
uses: pnpm/action-setup@v4
62+
with:
63+
version: 9
64+
run_install: false
65+
6066
- name: Set up Node.js
6167
uses: actions/setup-node@v4
6268
with:
@@ -65,22 +71,17 @@ jobs:
6571
- name: Install dependencies
6672
working-directory: ./frontend
6773
run: |
68-
npm install
69-
70-
- name: Run ci
71-
working-directory: ./frontend
72-
run: |
73-
npm ci
74+
pnpm install
7475
7576
- name: Run build
7677
working-directory: ./frontend
7778
run: |
78-
npm run build
79+
pnpm run build
7980
8081
- name: Run tests
8182
working-directory: ./frontend
8283
run: |
83-
npm run coveralls
84+
pnpm run coveralls
8485
8586
- name: Coveralls Parallel
8687
uses: coverallsapp/github-action@v2

.github/workflows/pre-commit.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,21 @@ jobs:
2020
pip install poetry
2121
poetry install
2222
23+
- name: Install pnpm
24+
uses: pnpm/action-setup@v4
25+
with:
26+
version: 9
27+
run_install: false
28+
2329
- name: Set up Node.js
2430
uses: actions/setup-node@v4
2531
with:
2632
node-version: "20"
2733

2834
- name: Install Node dependencies
29-
run: |
30-
npm install
3135
working-directory: ./frontend
36+
run: |
37+
pnpm install
3238
3339
- name: Run pre-commit
3440
uses: pre-commit/[email protected]

.github/workflows/publish.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ jobs:
4646
- name: Checkout code
4747
uses: actions/checkout@v4
4848

49+
- name: Install pnpm
50+
uses: pnpm/action-setup@v4
51+
with:
52+
version: 9
53+
run_install: false
54+
4955
- name: Set up Node.js
5056
uses: actions/setup-node@v4
5157
with:
@@ -55,21 +61,16 @@ jobs:
5561
- name: Install dependencies
5662
working-directory: ./frontend
5763
run: |
58-
npm install
59-
60-
- name: Run ci
61-
working-directory: ./frontend
62-
run: |
63-
npm ci
64+
pnpm install
6465
6566
- name: Build package
6667
working-directory: ./frontend
6768
run: |
68-
npm run build
69+
pnpm run build
6970
7071
- name: Publish package distributions to npm
7172
working-directory: ./frontend
7273
run: |
73-
npm publish
74+
pnpm publish
7475
env:
7576
NODE_AUTH_TOKEN: ${{ secrets.NPM_API_TOKEN }}

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ repos:
3131
hooks:
3232
- id: frontend-lint
3333
name: run frontend lint
34-
entry: sh -c 'cd frontend && npm run lint'
34+
entry: sh -c 'cd frontend && pnpm run lint'
3535
language: system
3636
types: [file]
3737
files: ^frontend/.*\.(js|jsx|ts|tsx)$
3838
pass_filenames: true
3939
- id: frontend-tsc
4040
name: run frontend tsc
41-
entry: sh -c 'cd frontend && npm run tsc'
41+
entry: sh -c 'cd frontend && pnpm run tsc'
4242
language: system
4343
types: [file]
4444
files: ^frontend/.*\.(ts|tsx)$
@@ -64,7 +64,7 @@ repos:
6464
pass_filenames: false
6565
- id: generate-frontend-client
6666
name: generate frontend client
67-
entry: sh -c 'cd frontend && npm run generate-client'
67+
entry: sh -c 'cd frontend && pnpm run generate-client'
6868
language: system
6969
# Only run frontend client generation if frontend files have changed:
7070
files: openapi_schema\.json$

CONTRIBUTING.md

+33-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Please follow this guide to learn more about how to develop and test the project
88

99
### Clone the repo
1010

11-
`git clone [email protected]:vintasoftware/django-ai-assistant.git`
11+
```bash
12+
git clone [email protected]:vintasoftware/django-ai-assistant.git
13+
```
1214

1315
### Set up a virtualenv, optionally set up nvm, and activate your environment(s)
1416

@@ -20,31 +22,55 @@ For installing Node, we recommend [NVM](https://github.com/nvm-sh/nvm).
2022

2123
#### Backend
2224

23-
`poetry install`
25+
Go to the project root and install the Python dependencies:
26+
27+
```bash
28+
poetry install
29+
```
2430

2531
#### Frontend
2632

33+
Go to the frontend directory and install the Node dependencies:
34+
2735
```bash
2836
cd frontend
29-
npm install
37+
pnpm install
3038
```
3139

3240
### Install pre-commit hooks
3341

34-
`pre-commit install`
42+
```bash
43+
pre-commit install
44+
```
3545

3646
It's critical to run the pre-commit hooks before pushing your code to follow the project's code style, and avoid linting errors.
3747

3848
### Developing with the example project
3949

40-
Run the frontend project in build:watch mode:
50+
Run the frontend project in `build:watch` mode:
4151

4252
```bash
4353
cd frontend
44-
npm run build:watch
54+
pnpm run build:watch
55+
```
56+
57+
Then use `pnpm link` to link the frontend library to the example project:
58+
59+
```bash
60+
cd frontend
61+
pnpm link
62+
```
63+
64+
Go to the example project to finish the link with the frontend library:
65+
66+
```bash
67+
cd .. # back to project root directory
68+
cd example
69+
pnpm install
70+
pnpm link django-ai-assistant-client
4571
```
4672

47-
Then follow the instructions in the [example README](https://github.com/vintasoftware/django-ai-assistant/tree/main/example#readme).
73+
Then follow the instructions in the [example README](https://github.com/vintasoftware/django-ai-assistant/tree/main/example#running) to run the example project.
4874

4975
## Tests
5076

docs/frontend.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Django AI Assistant has a frontend TypeScript client to facilitate the integrati
99

1010
## Installation
1111

12-
Install the frontend client using npm:
12+
Install the frontend client using pnpm:
1313

1414
```bash
15-
npm install django-ai-assistant-client
15+
pnpm install django-ai-assistant-client
1616
```
1717

1818
## Client Configuration

example/README.md

+3-28
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,12 @@ Most examples are inside a React frontend, but there is also a HTMX example.
66

77
## Installation
88

9-
Go to project root, then frontend dir and build the frontend library:
9+
Go to the example project, install its Node dependencies, and run the example Webpack devserver to build the React frontend:
1010

1111
```bash
12-
cd .. # back to project root directory
13-
cd frontend
14-
npm install
15-
npm run build
16-
```
17-
18-
Then use `npm link` to link the frontend library to the example project:
19-
20-
```bash
21-
cd frontend
22-
npm link
23-
```
24-
25-
Go to the example project to finish the link with the frontend library:
26-
27-
```bash
28-
cd .. # back to project root directory
2912
cd example
30-
npm install
31-
npm link django-ai-assistant-client
32-
```
33-
34-
Run the example Webpack devserver to build the React frontend:
35-
36-
```bash
37-
# in example directory
38-
npm run start
13+
pnpm install
14+
pnpm run start
3915
```
4016

4117
Install the example project Python dependencies:
@@ -85,4 +61,3 @@ Access the Django admin at `http://localhost:8000/admin/` and log in with the su
8561
## Usage
8662

8763
Access the example project at `http://localhost:8000/`.
88-

0 commit comments

Comments
 (0)