File tree Expand file tree Collapse file tree 5 files changed +1011
-1322
lines changed Expand file tree Collapse file tree 5 files changed +1011
-1322
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,5 @@ blueprints-integration/src/copy
13
13
# Temporary until they have been updated
14
14
server-core-integration
15
15
mos-gateway
16
+
17
+ /.nx /workspace-data
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 1.52.0-in-development" ,
3
3
"npmClient" : " yarn" ,
4
- "useWorkspaces " : true
4
+ "$schema " : " node_modules/lerna/schemas/lerna-schema.json "
5
5
}
Original file line number Diff line number Diff line change 55
55
"jest-environment-jsdom" : " ^29.7.0" ,
56
56
"jest-mock-extended" : " ^3.0.7" ,
57
57
"json-schema-to-typescript" : " ^10.1.5" ,
58
- "lerna" : " ^6.6.2 " ,
58
+ "lerna" : " ^8.1.9 " ,
59
59
"nodemon" : " ^2.0.22" ,
60
60
"open-cli" : " ^8.0.0" ,
61
61
"pinst" : " ^3.0.0" ,
Original file line number Diff line number Diff line change @@ -317,7 +317,9 @@ export function lockPointer(): void {
317
317
if ( pointerLockTurnstile === 0 ) {
318
318
// pointerLockTurnstile === 0 means that no requests for locking the pointer have been made
319
319
// since we last unlocked it
320
- document . body . requestPointerLock ( )
320
+ document . body . requestPointerLock ( ) . catch ( ( ) => {
321
+ console . warn ( 'Failed to get pointer lock' )
322
+ } )
321
323
// attach the event handlers only once. Once they are attached, we will track the
322
324
// locked state and act according to the turnstile
323
325
if ( ! pointerHandlerAttached ) {
You can’t perform that action at this time.
0 commit comments