Skip to content

Commit

Permalink
fix(pg): Don't include forge-std or ds-test in recommended quickstart…
Browse files Browse the repository at this point in the history
… remappings
  • Loading branch information
RPate97 committed Nov 7, 2023
1 parent bc58304 commit 0d76481
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/selfish-jars-bake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sphinx-labs/plugins': patch
---

Don't include forge-std and ds-test in recommended remappings
2 changes: 1 addition & 1 deletion docs/cli-existing-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ npx sphinx init

### pnpm
```
npx sphinx init --pnpm
pnpm sphinx init --pnpm
```

This created a few files:
Expand Down
2 changes: 1 addition & 1 deletion docs/cli-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ npx sphinx init --quickstart

### pnpm
```
npx sphinx init --quickstart --pnpm
pnpm sphinx init --quickstart --pnpm
```

This command created a few files:
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/src/sample-project/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export const writeSampleProjectFiles = (

if (!quickstart) {
const remappings = pnpm
? fetchPNPMRemappings(pnpmPluginsPackage, pnpmContractsPackage, true)
: fetchNPMRemappings(true)
? fetchPNPMRemappings(pnpmPluginsPackage, pnpmContractsPackage, false)
: fetchNPMRemappings(false)

spinner.info(
`Please add the following remappings to your foundry.toml or remappings.txt file:
Expand Down

0 comments on commit 0d76481

Please sign in to comment.