Skip to content

Commit e933c53

Browse files
committed
chore: migrate from yarn to npm
1 parent 3ae17de commit e933c53

File tree

5 files changed

+14600
-9155
lines changed

5 files changed

+14600
-9155
lines changed

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,3 @@
1616
.env.production.local
1717

1818
npm-debug.log*
19-
yarn-debug.log*
20-
yarn-error.log*

.gitpod.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
tasks:
2-
- init: yarn
3-
command: yarn start
2+
- init: npm install
3+
command: npm start
44

55
vscode:
66
extensions:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ You can open a development environment in your browser, without having to instal
1111

1212
## Local Development
1313

14-
You'll need [node.js](https://nodejs.org/) and [yarn](https://classic.yarnpkg.com/en/docs/install).
14+
You'll need [node.js](https://nodejs.org/) and npm.
1515
Clone this repo to your computer, then install the dependencies:
1616

1717
```console
18-
yarn install
18+
npm install
1919
```
2020

2121
Start the local development server:
2222

2323
```console
24-
yarn start
24+
npm start
2525
```
2626

2727
This will also open up a browser window with the docs site. Most changes are reflected live without having to restart the server.

0 commit comments

Comments
 (0)