Skip to content

Commit c313787

Browse files
author
Laura
authored
chore: Update repo to use npm rather than yarn (#25)
1 parent ff1181f commit c313787

File tree

5 files changed

+17186
-9825
lines changed

5 files changed

+17186
-9825
lines changed

.github/workflows/unit-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- uses: actions/setup-node@v3
1919
with:
2020
node-version: '20.x'
21-
cache: 'yarn'
21+
cache: 'npm'
2222
- name: Install dependencies
23-
run: yarn --immutable
23+
run: npm install --immutable
2424
- name: Test Project
25-
run: yarn test
25+
run: npm run test

.github/workflows/update-dvc-sdk.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/setup-node@v3
1515
with:
1616
node-version: '20.x'
17-
cache: 'yarn'
17+
cache: 'npm'
1818

1919
- name: Set Git author
2020
shell: bash
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "BRANCH_NAME=update-dvc-sdk" >> $GITHUB_ENV
2828

2929
- name: Update @devcycle/react-client-sdk to latest
30-
run: yarn add @devcycle/react-client-sdk@latest
30+
run: npm install @devcycle/react-client-sdk@latest
3131

3232
- name: Check for changes to package.json
3333
run: echo "IS_UPDATED=$(git diff --name-only origin/main package.json)" >> $GITHUB_ENV
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
git checkout -b "$BRANCH_NAME"
4343
git add package.json
44-
git add yarn.lock
44+
git add package-lock.json
4545
git commit -m "Update @devcycle/react-client-sdk to latest"
4646
git push --set-upstream origin "$BRANCH_NAME"
4747

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ When you run the example app and switch your identity between users, you'll be a
1212

1313
## Running the Example
1414

15-
* Run `yarn install` in the project directory to install dependencies
15+
* Run `npm install` in the project directory to install dependencies
1616
* Create a `.env` file and set `REACT_APP_DEVCYCLE_CLIENT_SDK_KEY` to the SDK Key for your environment.\
1717
You can find this under [Settings > Environments](https://app.devcycle.com/r/environments) on the DevCycle dashboard. [Learn more about environments](https://docs.devcycle.com/essentials/environments).
1818

19-
### `yarn start`
19+
### `npm run start`
2020

2121
Runs the app in the development mode.\
2222
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
2323

2424
The page will reload when you make changes.\
2525
You may also see any lint errors in the console.
2626

27-
### `yarn test`
27+
### `npm run test`
2828

2929
Launches the test runner in the interactive watch mode.\
3030
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

0 commit comments

Comments
 (0)