Skip to content

Commit

Permalink
Merge pull request #6 from nemorize/typo/issue-5
Browse files Browse the repository at this point in the history
chore: fix typo
  • Loading branch information
abiriadev authored Jun 2, 2024
2 parents 26278b9 + ddfdf39 commit 759138c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ _Lightweight SSR framework for React Server Components_

Create a new empty React project or use your existing one. If you're unsure how to start, follow the [Vite's official template](https://vitejs.dev/guide/#scaffolding-your-first-vite-project).

They, install Seia:
Then, install Seia:

```sh
$ npm install seia.js
Expand Down
2 changes: 1 addition & 1 deletion packages/seia/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ _Lightweight SSR framework for React Server Components_

Create a new empty React project or use your existing one. If you're unsure how to start, follow the [Vite's official template](https://vitejs.dev/guide/#scaffolding-your-first-vite-project).

They, install Seia:
Then, install Seia:

```sh
$ npm install seia.js
Expand Down
4 changes: 2 additions & 2 deletions packages/seia/src/process-polyfill.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// NOTE: typescript declare statement is global, so we should avoid redeclaring global `process` here, thus used `as any`
// NOTE: typescript declare statement is global, so we should avoid re-declaring global `process` here, thus used `as any`
// it will now work well with `@types/node`, but of course this is hack. not a great idea.
;(globalThis as any).process = {
env: {
// eslint-disable-next-line @typescript-eslint/naming-convention
NODE_ENV: 'prodection',
NODE_ENV: 'production',
},
}

0 comments on commit 759138c

Please sign in to comment.