You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Note: replace PROJECT_NAME with the name of your project
@@ -141,7 +141,6 @@ git push -u origin main
141
141
142
142
> Note: Replace REPOSITORY_NAME with the name of your repository. These commands will add the remote repository, rename the branch to main, and push your changes to the remote repository.
Copy file name to clipboardExpand all lines: README.template.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,12 +26,12 @@
26
26
27
27
### Prerequisites / Dependencies
28
28
29
-
You will need to have NodeJS and NPM installed to run this application. Use the [handbook guide](https://infinum.com/handbook/frontend/node/managing-node-npm-versions) to set up the correct NodeJS version.
29
+
You will need to have NodeJS and pNPM installed to run this application. Use the Infinum handbooks to set up the [package manager](https://infinum.com/handbook/frontend/node/package-managers-guidelines) and [NodeJS version](https://infinum.com/handbook/frontend/node/managing-node-npm-versions).
30
30
31
31
### Installation
32
32
33
33
1. clone this repository: `git clone [TODO:GIT_LINK]`
34
-
2. install all the dependencies: `npm ci`
34
+
2. install all the dependencies: `pnpm i`
35
35
36
36
### Post-install
37
37
@@ -51,8 +51,8 @@ To build the app you can use some of the following commands:
51
51
npm run build
52
52
53
53
# TODO: development and production builds if applicable
54
-
# npm run build:dev
55
-
# npm run build:prod
54
+
# pnpm build:dev
55
+
# pnpm build:prod
56
56
57
57
```
58
58
@@ -63,9 +63,9 @@ npm run build
63
63
To start the unit tests you can use one of the following commands:
64
64
65
65
```
66
-
npm run test
67
-
npm run test:watch
68
-
npm run test:coverage
66
+
pnpm test
67
+
pnpm test:watch
68
+
pnpm test:coverage
69
69
70
70
```
71
71
@@ -106,10 +106,10 @@ You can specify environment variables as per the guide in the [Nuts & Bolts](htt
0 commit comments