Skip to content

Commit aeafa67

Browse files
committed
Fixing a variety of package.json issues. Still testing npmx.
1 parent 7438f48 commit aeafa67

File tree

29 files changed

+171
-2748
lines changed

29 files changed

+171
-2748
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
*.build.error.log
2+
*.build.log
13
.DS_Store
4+
common
25
coverage
36
dist
47
lib

gulp-core-build-karma/.npmignore

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
.vscode
2-
src
3-
node_modules
4-
5-
.gitignore
6-
.gitattributes
1+
*.build.error.log
2+
*.build.log
73
.editorconfig
4+
.gitattributes
5+
.gitignore
6+
.vscode
7+
coverage
88
gulpfile.js
9-
lib/**/*.test.js
109
lib/**/*.test.d.ts
10+
lib/**/*.test.js
11+
node_modules
1112
npm-shrinkwrap.json
12-
coverage
13+
src
14+

gulp-core-build-karma/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
77
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/microsoft/web-build-tools"
11+
},
12+
"scripts": {
13+
"build": "gulp",
14+
"clean": "gulp nuke",
15+
"test": "gulp"
16+
},
817
"dependencies": {
918
"@microsoft/gulp-core-build": ">=0.11.0 <1.0.0",
1019
"chai": "~3.5.0",

gulp-core-build-mocha/.npmignore

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
.vscode
2-
src
3-
node_modules
4-
5-
.gitignore
6-
.gitattributes
1+
*.build.error.log
2+
*.build.log
73
.editorconfig
4+
.gitattributes
5+
.gitignore
6+
.vscode
7+
coverage
88
gulpfile.js
9-
lib/**/*.test.js
109
lib/**/*.test.d.ts
10+
lib/**/*.test.js
11+
node_modules
1112
npm-shrinkwrap.json
12-
coverage
13+
src

gulp-core-build-mocha/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
77
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/microsoft/web-build-tools"
11+
},
12+
"scripts": {
13+
"build": "gulp",
14+
"clean": "gulp nuke",
15+
"test": "gulp"
16+
},
817
"dependencies": {
918
"gulp": "~3.9.1",
1019
"@microsoft/gulp-core-build": ">=0.11.0 <1.0.0",

gulp-core-build-sass/.npmignore

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
.vscode
2-
src
3-
node_modules
4-
5-
.gitignore
6-
.gitattributes
1+
*.build.error.log
2+
*.build.log
73
.editorconfig
4+
.gitattributes
5+
.gitignore
6+
.vscode
7+
coverage
88
gulpfile.js
9-
lib/**/*.test.js
109
lib/**/*.test.d.ts
10+
lib/**/*.test.js
11+
node_modules
1112
npm-shrinkwrap.json
12-
coverage
13+
src

gulp-core-build-sass/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
77
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/microsoft/web-build-tools"
11+
},
12+
"scripts": {
13+
"build": "gulp",
14+
"clean": "gulp nuke",
15+
"test": "gulp"
16+
},
817
"dependencies": {
918
"@microsoft/load-themed-styles": "^1.2.2",
1019
"@microsoft/gulp-core-build": ">=0.11.0 <1.0.0",

gulp-core-build-serve/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
77
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/microsoft/web-build-tools"
11+
},
12+
"scripts": {
13+
"build": "gulp",
14+
"clean": "gulp nuke",
15+
"test": "gulp"
16+
},
817
"dependencies": {
918
"@microsoft/gulp-core-build": ">=0.11.0 <1.0.0",
1019
"deasync": "~0.1.7",
@@ -19,4 +28,4 @@
1928
"devDependencies": {
2029
"@microsoft/node-library-build": ">=0.3.1 <1.0.0"
2130
}
22-
}
31+
}
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
.vscode
2-
src
3-
node_modules
4-
5-
.gitignore
6-
.gitattributes
1+
*.build.error.log
2+
*.build.log
73
.editorconfig
4+
.gitattributes
5+
.gitignore
6+
.vscode
7+
coverage
88
gulpfile.js
9-
lib/**/*.test.js
109
lib/**/*.test.d.ts
10+
lib/**/*.test.js
11+
node_modules
1112
npm-shrinkwrap.json
12-
coverage
13+
src

gulp-core-build-typescript/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"license": "MIT",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/Microsoft/gulp-core-build-typescript.git"
10+
"url": "https://github.com/microsoft/web-build-tools"
1111
},
12-
"engines": {
13-
"npm": "3.10.8"
12+
"scripts": {
13+
"build": "gulp",
14+
"clean": "gulp nuke",
15+
"test": "gulp"
1416
},
1517
"dependencies": {
1618
"@microsoft/gulp-core-build": ">=0.11.0 <1.0.0",

0 commit comments

Comments
 (0)