Skip to content

Commit

Permalink
CI and README: yarn -> npm
Browse files Browse the repository at this point in the history
  • Loading branch information
mb21 committed Oct 7, 2023
1 parent a9f9d58 commit d53bf0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
- run:
name: "Build"
command: |
yarn install
yarn run electron:build
npm ci --legacy-peer-deps
npm run electron:build
workflows:
version: 2
build_and_deploy:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ Feedback, suggestions and contributions very much welcome! Please open an issue

## Develop

Install git (if you haven't already) and [install Volta](https://docs.volta.sh/guide/getting-started) (which will make the correct Node.js and Yarn versions availlable in the project directory), then:
Install git (if you haven't already) and [install Volta](https://docs.volta.sh/guide/getting-started) (which will make the correct Node.js and npm versions availlable in the project directory), then:

git clone [email protected]:mb21/panwriter.git
cd panwriter
yarn install
npm ci

## To run the app in development mode:
yarn run electron:dev
npm run electron:dev

## To build distributable app package (goes to ./dist):
yarn dist
npm dist

Check out the `package.json` for more scripts to run.

Expand Down

0 comments on commit d53bf0c

Please sign in to comment.