-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrush.json
78 lines (78 loc) · 2.13 KB
/
rush.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.81.0",
"pnpmVersion": "7.13.4",
"pnpmOptions": {
"useWorkspaces": true,
"strictPeerDependencies": true
},
"nodeSupportedVersionRange": ">=12.13.0 <13.0.0 || >=14.15.0 <15.0.0 || >=16.13.0 <17.0.0",
"ensureConsistentVersions": true,
"projectFolderMinDepth": 2,
"projectFolderMaxDepth": 2,
"approvedPackagesPolicy": {
"reviewCategories": ["config", "example", "production", "tools", "website"],
"ignoredNpmScopes": ["@types"]
},
"gitPolicy": {
"versionBumpCommitMessage": "[repo] Bump versions [skip ci]",
"changeLogUpdateCommitMessage": "[repo] Update changelogs [skip ci]"
},
"repository": {
"url": "https://github.com/isometrycss/isometry",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"allowedProjectTags": [
"config",
"documentation",
"example",
"integration",
"library",
"utility"
],
"projects": [
{
"packageName": "@isometry/tsconfig",
"projectFolder": "config/tsconfig",
"reviewCategory": "production",
"shouldPublish": true,
"tags": ["config"]
},
{
"packageName": "documentation-website",
"projectFolder": "documentation/website",
"reviewCategory": "website",
"shouldPublish": false,
"tags": ["documentation"]
},
{
"packageName": "example-esbuild",
"projectFolder": "example/esbuild",
"reviewCategory": "example",
"shouldPublish": false,
"tags": ["example"]
},
{
"packageName": "@isometry/esbuild-plugin",
"projectFolder": "integration/esbuild-plugin",
"reviewCategory": "production",
"shouldPublish": true,
"tags": ["integration"]
},
{
"packageName": "@isometry/css",
"projectFolder": "library/css",
"reviewCategory": "production",
"shouldPublish": true,
"tags": ["library"]
},
{
"packageName": "@isometry/processor",
"projectFolder": "library/processor",
"reviewCategory": "production",
"shouldPublish": true,
"tags": ["library"]
}
]
}