forked from JSMonk/hegel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
86 lines (77 loc) · 2.05 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
79
80
81
82
83
84
85
86
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.22.0",
"npmVersion": "6.1.0",
// "npmVersion": "4.5.0",
"nodeSupportedVersionRange": ">=12.0.0",
// "suppressNodeLtsWarning": false,
// "ensureConsistentVersions": true,
"projectFolderMinDepth": 1,
"projectFolderMaxDepth": 3,
"gitPolicy": {
"versionBumpCommitMessage": "Applying package updates. [skip-ci]"
},
"repository": {
"url": "https://github.com/JSMonk/hegel.git",
},
"eventHooks": {
/**
* The list of shell commands to run before the Rush installation starts
*/
"preRushInstall": [
// "common/scripts/pre-rush-install.js"
],
/**
* The list of shell commands to run after the Rush installation finishes
*/
"postRushInstall": [],
/**
* The list of shell commands to run before the Rush build command starts
*/
"preRushBuild": [],
/**
* The list of shell commands to run after the Rush build command finishes
*/
"postRushBuild": []
},
"variants": [
// {
// /**
// * The folder name for this variant.
// */
// "variantName": "old-sdk",
//
// /**
// * An informative description
// */
// "description": "Build this repo using the previous release of the SDK"
// }
],
"projects": [
{
"packageName": "@hegel/cli",
"projectFolder": "packages/cli",
"shouldPublish": true
},
{
"packageName": "@hegel/core",
"projectFolder": "packages/core",
"shouldPublish": true
},
{
"packageName": "@hegel/docs",
"projectFolder": "packages/docs",
"shouldPublish": false
},
{
"packageName": "@hegel/language-server",
"projectFolder": "packages/language-server",
"shouldPublish": false
},
{
"packageName": "@hegel/typings",
"projectFolder": "packages/typings",
"shouldPublish": true
}
]
}