Skip to content

Commit 60d03ef

Browse files
committed
Merge branch 'protocol_designer-migrate-webpack-to-vite' of https://github.com/Opentrons/opentrons into protocol_designer-migrate-webpack-to-vite
2 parents 881ab8c + 08190d3 commit 60d03ef

File tree

9 files changed

+13
-12
lines changed

9 files changed

+13
-12
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.pypy_cache
1717
dist
1818
build
19-
pnpm-lock.yaml
19+
yarn.lock
2020
Pipfile.lock
2121

2222
__pycache__

.github/workflows/app-test-build-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- '*.js'
1717
- 'scripts/**/*'
1818
- '*.json'
19-
- 'pnpm-lock.yaml'
19+
- 'yarn.lock'
2020
- '.github/workflows/app-test-build-deploy.yaml'
2121
- '.github/workflows/utils.js'
2222
branches:
@@ -36,7 +36,7 @@ on:
3636
- 'discovery-client/**/*'
3737
- '*.js'
3838
- '*.json'
39-
- 'pnpm-lock.yaml'
39+
- 'yarn.lock'
4040
- 'scripts/**/*'
4141
workflow_dispatch:
4242

.github/workflows/components-test-build-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
- name: 'setup-js'
176176
run: |
177177
npm config set cache ./.npm-cache
178-
pnpm i
178+
yarn config set cache-folder ./.yarn-cache
179179
- name: 'build typescript'
180180
run: make build-ts
181181
- name: 'build library'

.github/workflows/shared-data-test-lint-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
- name: 'js deps'
219219
run: |
220220
npm config set cache ./.npm-cache
221-
pnpm i
221+
yarn config set cache-folder ./.yarn-cache
222222
- name: 'build typescript'
223223
run: make build-ts
224224
- name: 'build library'

.github/workflows/tag-releases.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
- name: 'setup-js'
2929
run: |
3030
npm config set cache ${{ github.workspace }}/.npm-cache
31-
pnpm i
31+
yarn config set cache-folder ${{ github.workspace }}/.yarn-cache
32+
3233
- name: 'create release'
3334
run: |
3435
node ./scripts/deploy/create-release.js ${{ github.token }} ${{ github.ref_name }} --deploy

components/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function CowButton(props) {
1818

1919
Usage requirements for dependent projects:
2020

21-
- Node v18 and pnpm
21+
- Node v18 and yarn
2222
- The following `dependencies` (peer dependencies of `@opentrons/components`)
2323
- `react`: `17.0.1`,
2424
- `react-router-dom`: `^4.2.2`,

discovery-client/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ client.on('error', (error) => console.error(error)
219219
# prereq: build project before first run or after changes
220220
make -C discovery-client
221221

222-
# run via pnpm run
223-
pnpm run discovery [command] [options]
222+
# run via yarm run
223+
yarm run discovery [command] [options]
224224

225225
# run via npx
226226
npx discovery [command] [options]
@@ -234,7 +234,7 @@ node_modules/.bin/discovery [command] [options]
234234
The CLI's global options are almost completely the same as the API's options, with the addition of `logLevel`. You may print the options with:
235235
236236
```shell
237-
pnpm discovery --help
237+
yarm discovery --help
238238
```
239239
240240
| flag | description | default | example |

protocol-designer/benchmarks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Note: this tooling around benchmark testing is very minimal and subject to chang
44

55
To run all PD benchmarks, `make -C protocol-designer benchmarks`. This will output to a file `protocol-designer/benchmarks/output/$(date_time)`. To set the name of the file, specify `benchmark_output`
66

7-
These benchmarks use [Nanobench](https://github.com/mafintosh/nanobench), so you can pipe the output to a file and compare benchmark runs with `pnpm nanobench-compare fileA fileB`
7+
These benchmarks use [Nanobench](https://github.com/mafintosh/nanobench), so you can pipe the output to a file and compare benchmark runs with `yarn nanobench-compare fileA fileB`
88

99
## Local benchmarking guidelines
1010

scripts/push.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# utilities for pushing things to robots in a reusable fashion
22

3-
find_robot=$(shell pnpm run -s discovery find -i 169.254)
3+
find_robot=$(shell yarn run -s discovery find -i 169.254)
44
default_ssh_key := ~/.ssh/robot_key
55
default_ssh_opts := -o stricthostkeychecking=no -o userknownhostsfile=/dev/null
66
version_dict=$(shell ssh $(call id-file-arg,$(2)) $(3) root@$(1) cat /etc/VERSION.json)

0 commit comments

Comments
 (0)