Skip to content

Commit

Permalink
Merge pull request #915 from ember-learn/fix-update-readme-to-use-pnpm
Browse files Browse the repository at this point in the history
fix: update readme to use pnpm
  • Loading branch information
mansona authored Jul 9, 2024
2 parents 72cb615 + 55bb550 commit ff0844c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ locally yourself.
```
git clone https://github.com/ember-learn/ember-api-docs.git
cd ember-api-docs
npm install
npm run clone
npm run start
pnpm install
pnpm run clone
pnpm run start
```

View at http://localhost:4200

### Run locally with a sym-link
Expand All @@ -64,8 +65,8 @@ git clone https://github.com/ember-learn/ember-api-docs-data
git clone https://github.com/ember-learn/ember-api-docs
cd ember-api-docs
ln -s ../ember-api-docs-data
npm install
npm start
pnpm install
pnpm start
```

Visit the app in your browser at [http://localhost:4200](http://localhost:4200)
Expand All @@ -76,9 +77,9 @@ To run a11y tests, run `test_a11y=yes ember serve`

## Linting

* `npm run lint:hbs`
* `npm run lint:js`
* `npm run lint:js -- --fix`
* `pnpm run lint:hbs`
* `pnpm run lint:js`
* `pnpm run lint:js -- --fix`

## Staging and Deployment

Expand Down

0 comments on commit ff0844c

Please sign in to comment.