-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrush.json
67 lines (67 loc) · 1.88 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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.112.2",
"pnpmVersion": "8.12.1",
"nodeSupportedVersionRange": ">=14.15.0 <15.0.0 || >=16.13.0 <17.0.0 || >=18.15.0 <19.0.0 || >=20.3.0 <21.0.0",
"gitPolicy": {},
"repository": {
"url": "https://github.com/dystopiandev/viewport-animate.git",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"eventHooks": {
/**
* A list of shell commands to run before "rush install" or "rush update" starts installation
*/
"preRushInstall": [
// "common/scripts/pre-rush-install.js"
],
/**
* A list of shell commands to run after "rush install" or "rush update" finishes installation
*/
"postRushInstall": [],
/**
* A list of shell commands to run before "rush build" or "rush rebuild" starts building
*/
"preRushBuild": [],
/**
* A list of shell commands to run after "rush build" or "rush rebuild" finishes building
*/
"postRushBuild": [],
/**
* A list of shell commands to run before the "rushx" command starts
*/
"preRushx": [],
/**
* A list of shell commands to run after the "rushx" command finishes
*/
"postRushx": []
},
"variants": [],
"projects": [
{
"packageName": "viewport-animate",
"projectFolder": "packages/viewport-animate"
},
{
"packageName": "@sources/viewport-animate",
"projectFolder": "sources/viewport-animate"
},
{
"packageName": "@examples/shared",
"projectFolder": "examples/shared"
},
{
"packageName": "@examples/demo.astro",
"projectFolder": "examples/demo.astro"
},
{
"packageName": "@examples/demo.vue",
"projectFolder": "examples/demo.vue"
},
{
"packageName": "@examples/demo.react",
"projectFolder": "examples/demo.react"
}
]
}