forked from rocketride-org/rocketride-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-workspace.yaml
More file actions
42 lines (36 loc) · 1.03 KB
/
pnpm-workspace.yaml
File metadata and controls
42 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Rocketride Engine Monorepo Workspace Configuration
# This file defines which directories contain packages in the monorepo
# Suppress cyclic-dependency warning caused by apps/vscode and
# packages/client-typescript both being named "rocketride".
# The cycle is via a peer dependency and is harmless.
ignoreWorkspaceCycles: true
# Only allow postinstall/install scripts for known, trusted packages that
# require native compilation or binary downloads.
# See: https://pnpm.io/npmrc#onlybuiltdependencies
onlyBuiltDependencies:
- '@homebridge/node-pty-prebuilt-multiarch'
- '@vscode/vsce-sign'
- 'core-js'
- 'cpu-features'
- 'esbuild'
- 'keytar'
- 'lefthook'
- 'protobufjs'
- 'ssh2'
- 'unrs-resolver'
packages:
# Shared UI components
- 'packages/shared-ui'
# Client libraries
- 'packages/client-typescript'
# Applications
- 'apps/chat-ui'
- 'apps/dropper-ui'
- 'apps/hello-ui'
- 'apps/monitor-ui'
- 'apps/profiler-ui'
- 'apps/shell-ui'
- 'apps/vscode'
- 'apps/world-ui'
# Examples
- 'examples/*'