Skip to content

Commit

Permalink
deps: replace yarn with npm (#19)
Browse files Browse the repository at this point in the history
* deps: replace yarn with npm

* deps: update gatsby
  • Loading branch information
martinjagodic authored Feb 7, 2024
1 parent 83bb929 commit 2ac0408
Show file tree
Hide file tree
Showing 5 changed files with 24,383 additions and 13,882 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ This repository builds decapcms.org. If you'd like to propose changes to the sit

The site is built with [GatsbyJS](https://gatsbyjs.org/).

To run the site locally, you'll need to have [Node](https://nodejs.org) version 16 and [Yarn](https://yarnpkg.com/en/) installed on your computer.
To run the site locally, you'll need to have [Node](https://nodejs.org) version 18 or above installed on your computer.

To install dependencies and start the development server, run the following commands:

```bash
yarn
yarn start
npm install
npm run start
```

Then visit http://localhost:8000/ - Gatsby will automatically reload CSS or
Expand Down
6 changes: 1 addition & 5 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[build]
command = "yarn install && yarn lint && yarn build"
command = "npm install && npm run lint && npm run build"
publish = "dist/"

[build.environment]
YARN_FLAGS = "--frozen-lockfile"
YARN_VERSION = "1.22.4"
Loading

0 comments on commit 2ac0408

Please sign in to comment.