Skip to content

Commit b0cce18

Browse files
authored
Merge pull request microsoft#38 from Microsoft/ianc/rush
Converting web-build-tools to use Rush instead of NPMX.
2 parents 807aa3c + 0d91d7f commit b0cce18

23 files changed

Lines changed: 687 additions & 657 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
*.build.error.log
22
*.build.log
33
.DS_Store
4+
.vscode/launch.json
45
/common/last-install.*
56
/common/npm-local
67
/common/local-npm
7-
/common/npmx-link.json
8+
/common/rush-link.json
9+
/common/rush-recycler
810
coverage
911
dist
1012
lib

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ before_script:
55
- npm install -g gulp
66
script:
77
- echo 'Installing...' && echo -en 'travis_fold:start:install\\r'
8-
- node node_modules/@microsoft/npmx/lib/npmx.js install
8+
- node node_modules/@microsoft/rush/lib/rush.js install
99
- echo -en 'travis_fold:end:install\\r'
1010
- echo 'Linking...' && echo -en 'travis_fold:start:link\\r'
11-
- node node_modules/@microsoft/npmx/lib/npmx.js link
11+
- node node_modules/@microsoft/rush/lib/rush.js link
1212
- echo -en 'travis_fold:end:link\\r'
1313
- echo 'Building...' && echo -en 'travis_fold:start:build\\r'
14-
- node node_modules/@microsoft/npmx/lib/npmx.js rebuild
14+
- node node_modules/@microsoft/rush/lib/rush.js rebuild
1515
- echo -en 'travis_fold:end:build\\r'
1616

.vscode/launch.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

BUILDING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Install Rush
2+
3+
```
4+
npm install -g @microsoft/rush
5+
```
6+
7+
## Install dependencies
8+
9+
```
10+
rush install
11+
```
12+
13+
## Link projects and dependencies
14+
15+
```
16+
rush link
17+
```
18+
19+
## Build
20+
21+
### Full rebuild
22+
23+
```
24+
rush rebuild -q
25+
```
26+
27+
### Incremental Build
28+
29+
```
30+
rush build -q
31+
```

0 commit comments

Comments
 (0)