Skip to content

Commit b05b7ac

Browse files
authored
Bringing @types to all of web-build-tools. (microsoft#12)
* GCB now using @types. * Updating to ts 2.0.6 which seems to fix some symlink issues. * Updating karma to build with new typings. * Gulp mocha now on @types * Fixing sass and serve. * Fixing typings. * Fixing typescript and webpack. * Finishing off remaining parts. * Fixing travis logging to be folded. * typos
1 parent 22cadbf commit b05b7ac

File tree

187 files changed

+533
-68762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+533
-68762
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,14 @@ node_js:
33
- '4.6'
44
before_script:
55
- npm install -g gulp @microsoft/npmx
6-
script: npmx install && npmx link && npmx rebuild
6+
script:
7+
- echo 'Installing...' && echo -en 'travis_fold:start:install\\r'
8+
- npmx install
9+
- echo -en 'travis_fold:end:install\\r'
10+
- echo 'Linking...' && echo -en 'travis_fold:start:link\\r'
11+
- npmx link
12+
- echo -en 'travis_fold:end:link\\r'
13+
- echo 'Building...' && echo -en 'travis_fold:start:build\\r'
14+
- npmx rebuild
15+
- echo -en 'travis_fold:end:build\\r'
16+

common/npm-shrinkwrap.json

Lines changed: 220 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/temp_modules/npmx-gulp-core-build-karma/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
"private": true,
55
"dependencies": {
66
"@microsoft/node-library-build": ">=0.4.0 <1.0.0",
7+
"@types/chalk": "^0.4.31",
8+
"@types/es6-promise": "0.0.32",
9+
"@types/gulp": "^3.8.32",
10+
"@types/karma": "^0.13.33",
11+
"typescript": "~2.0.6",
712
"chai": "~3.5.0",
813
"gulp": "~3.9.1",
914
"gulp-karma": "~0.0.5",

common/temp_modules/npmx-gulp-core-build-mocha/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@
44
"private": true,
55
"dependencies": {
66
"@microsoft/node-library-build": ">=0.4.0 <1.0.0",
7-
"typescript": "2.0.3",
7+
"@types/chalk": "^0.4.31",
8+
"@types/gulp": "^3.8.32",
9+
"@types/gulp-istanbul": "^0.9.30",
10+
"@types/gulp-mocha": "0.0.29",
11+
"@types/mocha": "^2.2.32",
12+
"@types/orchestrator": "0.0.30",
13+
"@types/q": "0.0.32",
14+
"typescript": "~2.0.6",
15+
"@types/es6-promise": "0.0.32",
16+
"@types/node": "^6.0.46",
817
"gulp": "~3.9.1",
918
"gulp-istanbul": "~0.10.3",
1019
"gulp-mocha": "~2.2.0"

common/temp_modules/npmx-gulp-core-build-sass/package.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,22 @@
44
"private": true,
55
"dependencies": {
66
"@microsoft/node-library-build": ">=0.4.0 <1.0.0",
7-
"typescript": "2.0.3",
7+
"@types/chalk": "^0.4.31",
8+
"@types/express": "^4.0.33",
9+
"@types/express-serve-static-core": "^4.0.38",
10+
"@types/gulp": "^3.8.32",
11+
"@types/gulp-util": "^3.0.29",
12+
"@types/mime": "0.0.29",
13+
"@types/node-forge": "^0.6.4",
14+
"@types/orchestrator": "0.0.30",
15+
"@types/q": "0.0.32",
16+
"@types/serve-static": "^1.7.31",
17+
"@types/through2": "^2.0.31",
18+
"@types/vinyl": "^1.2.30",
19+
"typescript": "~2.0.6",
820
"@microsoft/load-themed-styles": "^1.2.2",
21+
"@types/es6-promise": "0.0.32",
22+
"@types/node": "^6.0.46",
923
"autoprefixer": "6.3.7",
1024
"gulp": "~3.9.1",
1125
"gulp-changed": "~1.3.0",

common/temp_modules/npmx-gulp-core-build-serve/package.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@
44
"private": true,
55
"dependencies": {
66
"@microsoft/node-library-build": ">=0.4.0 <1.0.0",
7-
"typescript": "2.0.3",
7+
"@types/chalk": "^0.4.31",
8+
"@types/express": "^4.0.33",
9+
"@types/express-serve-static-core": "^4.0.38",
10+
"@types/gulp": "^3.8.32",
11+
"@types/gulp-util": "^3.0.29",
12+
"@types/mime": "0.0.29",
13+
"@types/node-forge": "^0.6.4",
14+
"@types/orchestrator": "0.0.30",
15+
"@types/q": "0.0.32",
16+
"@types/serve-static": "^1.7.31",
17+
"@types/through2": "^2.0.31",
18+
"@types/vinyl": "^1.2.30",
19+
"typescript": "~2.0.6",
20+
"@types/es6-promise": "0.0.32",
21+
"@types/node": "^6.0.46",
822
"deasync": "~0.1.7",
923
"express": "~4.14.0",
1024
"gulp": "~3.9.1",

0 commit comments

Comments
 (0)