Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to leverage pnpm for monorepo #37259

Merged
merged 35 commits into from
May 29, 2022
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c219beb
Update to leverage pnpm for monorepo
ijjk May 28, 2022
65d85b1
update compiled
ijjk May 28, 2022
9a322fc
update stats action
ijjk May 28, 2022
cb81d92
update ci install step
ijjk May 28, 2022
4579487
update ci
ijjk May 28, 2022
1765a75
add test dep
ijjk May 28, 2022
7f5be35
update invoking scripts
ijjk May 28, 2022
ac670e9
update caching
ijjk May 28, 2022
ccbb9d7
skip cache for now
ijjk May 28, 2022
44d9c73
update dep
ijjk May 28, 2022
9415a05
update packages and fix babel
ijjk May 28, 2022
50b2240
update compiled
ijjk May 28, 2022
6c5cd4e
update lint
ijjk May 28, 2022
f5e73f8
update test
ijjk May 28, 2022
6c59acf
update ci
ijjk May 28, 2022
bc7b937
update pnpm store caching
ijjk May 28, 2022
3ef07ee
update path for windows
ijjk May 28, 2022
32f40d0
update restore-key config
ijjk May 28, 2022
20cee43
update caching
ijjk May 28, 2022
9a931c1
remove extra build azure stage
ijjk May 28, 2022
08e4d22
re-add checkout
ijjk May 28, 2022
c3b14d2
update setting pnpm store
ijjk May 28, 2022
95e9968
bump
ijjk May 28, 2022
ec48bf3
remove azure caching as pnpm is faster to download
ijjk May 28, 2022
9d8123e
update contributing
ijjk May 28, 2022
eab1ce7
apply suggestions
ijjk May 28, 2022
11cd69f
remove install-peers
ijjk May 28, 2022
41c8f8f
prepublish -> prepublishOnly
ijjk May 28, 2022
10973f9
prepublish -> prepublishOnly more
ijjk May 28, 2022
56c938c
more yarn -> pnpm references
ijjk May 28, 2022
3072628
more yarn -> pnpm references take 2
ijjk May 28, 2022
d2555f4
use workspace protocol for root package.json
ijjk May 29, 2022
6f0710a
Merge branch 'canary' into update/use-pnpm
ijjk May 29, 2022
e055947
Merge branch 'canary' into update/use-pnpm
ijjk May 29, 2022
99a7423
Merge branch 'canary' into update/use-pnpm
styfle May 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update path for windows
  • Loading branch information
ijjk committed May 28, 2022
commit 3ef07ee7060c1dd1e4e90cd571d747ccd95485bf
7 changes: 6 additions & 1 deletion run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,12 @@ async function main() {

const sema = new Sema(concurrency, { capacity: testNames.length })
const children = new Set()
const jestPath = path.join(__dirname, 'node_modules', '.bin', 'jest')
const jestPath = path.join(
__dirname,
'node_modules',
'.bin',
`jest${process.platform === 'win32' ? '.CMD' : ''}`
)

const runTest = (test = '', isFinalRun) =>
new Promise((resolve, reject) => {
Expand Down