Skip to content

Commit ea827c7

Browse files
authored
Merge pull request #138 from 0xMiden/chore/update-webtutorial-webpack-instructions
chore: update tutorial instructions to use webpack instead of turbopack
2 parents e211943 + 6f30d6c commit ea827c7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/src/web-client/counter_contract_tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ This tutorial assumes you have a basic understanding of Miden assembly. To quick
4747
pnpm i @demox-labs/miden-sdk@0.11.1
4848
```
4949

50-
**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
50+
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:
5151

5252
`package.json`
5353

5454
```json
5555
"scripts": {
56-
"dev": "next dev",
56+
"dev": "next dev --webpack",
5757
...
5858
}
5959
```

docs/src/web-client/create_deploy_tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ It is useful to think of notes on Miden as "cryptographic cashier's checks" that
5858
pnpm install @demox-labs/miden-sdk@0.11.1
5959
```
6060

61-
**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
61+
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:
6262

6363
`package.json`
6464

6565
```json
6666
"scripts": {
67-
"dev": "next dev",
67+
"dev": "next dev --webpack",
6868
...
6969
}
7070
```

docs/src/web-client/creating_multiple_notes_tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ Anyone can run their own delegated prover server. If you are building a product
6060
pnpm install @demox-labs/miden-sdk@0.11.1
6161
```
6262

63-
**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
63+
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:
6464

6565
`package.json`
6666

6767
```json
6868
"scripts": {
69-
"dev": "next dev",
69+
"dev": "next dev --webpack",
7070
...
7171
}
7272
```

docs/src/web-client/foreign_procedure_invocation_tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ This tutorial assumes you have a basic understanding of Miden assembly and compl
6060
pnpm i @demox-labs/miden-sdk@0.11.1
6161
```
6262

63-
**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
63+
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:
6464

6565
`package.json`
6666

6767
```json
6868
"scripts": {
69-
"dev": "next dev",
69+
"dev": "next dev --webpack",
7070
...
7171
}
7272
```

docs/src/web-client/unauthenticated_note_how_to.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ This tutorial assumes you have a basic understanding of Miden assembly. To quick
8080
pnpm install @demox-labs/miden-sdk@0.11.1
8181
```
8282

83-
**NOTE!**: Be sure to remove the `--turbopack` command from your `package.json` when running the `dev script`. The dev script should look like this:
83+
**NOTE!**: Be sure to add the `--webpack` command to your `package.json` when running the `dev script`. The dev script should look like this:
8484

8585
`package.json`
8686

8787
```json
8888
"scripts": {
89-
"dev": "next dev",
89+
"dev": "next dev --webpack",
9090
...
9191
}
9292
```

0 commit comments

Comments
 (0)