Skip to content

Commit

Permalink
docs: fix links to decision docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pcattori committed May 18, 2022
1 parent 717ddda commit 9ad6c26
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/remix-deno/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ For more, see the [Remix docs](https://remix.run/docs/).
## Install

Installation is done via `npm`, but the code itself is Deno source code.
Read more about [why we use `npm` to manage dependencies for Deno projects](https://github.com/remix-run/remix/blob/main/docs/decisions/0001-use-npm-to-manage-npm-dependencies-for-deno-projects.md) in Remix.
Read more about [why we use `npm` to manage dependencies for Deno projects](https://github.com/remix-run/remix/blob/main/decisions/0001-use-npm-to-manage-npm-dependencies-for-deno-projects.md) in Remix.

```sh
npm install @remix-run/deno
Expand Down
24 changes: 24 additions & 0 deletions packages/remix-deno/Untitled-1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

// blah.tsx
import a from ''
import b from ''
className={a + b}

// foot.tsx
// import a from ''
// import b from ''
// className={b + a}


a.module.scss
b.module.scss

button -> button.module.scss
text -> text.module.scss
// n3 -> n1,n2
superbutton -> button
app -> superbutton, text

// css output
b
a
2 changes: 1 addition & 1 deletion templates/deno/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ npx create-remix@latest --template deno

## Managing dependencies

Read about [how we recommend to manage dependencies for Remix projects using Deno](https://github.com/remix-run/remix/blob/main/docs/decisions/0001-use-npm-to-manage-npm-dependencies-for-deno-projects.md).
Read about [how we recommend to manage dependencies for Remix projects using Deno](https://github.com/remix-run/remix/blob/main/decisions/0001-use-npm-to-manage-npm-dependencies-for-deno-projects.md).

- ✅ You should use `npm` to install NPM packages
```sh
Expand Down

0 comments on commit 9ad6c26

Please sign in to comment.