forked from steppex/nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
81 lines (78 loc) · 2.5 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
/**
* This is the main configuration file for Rush.
* For full documentation, please see https://rushjs.io
*/
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
// LTS versions: https://nodejs.org/en/download/releases/ , LTS schedule: https://nodejs.org/en/about/releases/
"nodeSupportedVersionRange": ">=14.17.0",
"rushVersion": "5.58.0",
"pnpmVersion": "6.24.3",
"pnpmOptions": {
// "pnpmStore": "local",
"strictPeerDependencies": true,
// "resolutionStrategy": "fast",
// "preventManualShrinkwrapChanges": true,
"useWorkspaces": true
},
"repository": {
"url": "https://github.com/justajwolf/nodejs",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"gitPolicy": {
"allowedEmailRegExps": [],
"sampleEmail": "[email protected]"
// "versionBumpCommitMessage": "Bump versions [skip ci]",
// "changeLogUpdateCommitMessage": "Update changelogs [skip ci]"
},
"eventHooks": {
"preRushInstall": [
// "common/scripts/pre-rush-install.js"
],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": []
},
// For more details and instructions, see this article: https://rushjs.io/pages/advanced/installation_variants/
"variants": [],
// "telemetryEnabled": false,
// "hotfixChangeEnabled": false,
// "suppressNodeLtsWarning": false,
// "ensureConsistentVersions": true,
// "projectFolderMinDepth": 2,
// "projectFolderMaxDepth": 2,
// "allowMostlyStandardPackageNames": true,
// "approvedPackagesPolicy": {
// "reviewCategories": [
// "production", // projects that ship to production
// "tools", // non-shipping projects that are part of the developer toolchain
// "prototypes" // experiments that should mostly be ignored by the review process
// ],
// "ignoredNpmScopes": ["@types"]
// },
"projects": [
{
"packageName": "@justajwolf/body-parser-xml",
"projectFolder": "packages/body-parser-xml",
"publishFolder": "./dist",
"shouldPublish": true
// "reviewCategory": "production",
// "cyclicDependencyProjects": [
// // "my-toolchain"
// ],
// "skipRushCheck": false
},
{
"packageName": "@justajwolf/clickhouse",
"projectFolder": "packages/clickhouse",
"publishFolder": "./dist",
"shouldPublish": true
// "reviewCategory": "production",
// "cyclicDependencyProjects": [
// // "my-toolchain"
// ],
// "skipRushCheck": false
}
]
}