Skip to content

Commit b167ac4

Browse files
AlexKushnir1AlexKushnir1
AlexKushnir1
authored and
AlexKushnir1
committed
replace pnpm with npm in Readme
1 parent 71c5f31 commit b167ac4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/simple-project/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ This is the simplest project setup example with workspaces-js. You can copy it a
44

55
## Usage
66
```
7-
yarn
8-
yarn test
7+
pnpm install
8+
pnpm test
99
```
1010

1111
## Setup your project
1212

1313
Assume you have written your smart contract. Setup and write workspaces-js test as this project is easy:
1414

1515
1. Build the contract to `.wasm` as place it in `contracts/`.
16-
2. Install the `near-workspaces` and `ava` with `npm` or `yarn`.
16+
2. Install the `near-workspaces` and `ava` with `pnpm` or you package manager.
1717
3. Copy the ava.config.cjs to you project root directory.
1818
4. Write test, place in `__tests__/`, end with `.ava.js`. You can refer to `__tests__/test-status-message.ava.js` as an example.
19-
5. We're done! Run test with `yarn test` and continue adding more tests!
19+
5. We're done! Run test with `pnpm test` and continue adding more tests!

0 commit comments

Comments
 (0)