Skip to content

Commit 6351a5b

Browse files
authored
Merge branch 'master' into master
2 parents 8ceea11 + 551feb8 commit 6351a5b

File tree

12 files changed

+24
-259
lines changed

12 files changed

+24
-259
lines changed

AUTHORS

-134
This file was deleted.

bin/generate-authors

-7
This file was deleted.

bin/prepare-release

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ CURRENT_PACKAGE_JSON_VERSION=$(cat package.json \
1717
export BUILD_DIR=dist
1818
npm run build
1919

20-
# Update AUTHORS file
21-
sh bin/generate-authors
22-
2320
# Update version in package.json
2421
sed -i "s/\"version\": \"$CURRENT_PACKAGE_JSON_VERSION\"/\"version\": \"$NEW_VERSION\"/g" package.json
2522

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"gulp-sourcemaps": "1.9.1",
2929
"gulp-typescript": "^3.1.3",
3030
"gulp-util": "3.0.8",
31-
"jsdoc": "3.4.3",
3231
"jsdom": "^11.11.0",
3332
"merge-stream": "^1.0.1",
3433
"node-pty": "0.7.6",
@@ -57,7 +56,6 @@
5756
"test-suite": "gulp mocha-suite --test",
5857
"test-coverage": "nyc -x gulpfile.js -x '**/*test*' npm run mocha",
5958
"mocha": "gulp test",
60-
"build:docs": "jsdoc -c jsdoc.json",
6159
"tsc": "tsc",
6260
"prebuild": "concurrently --kill-others-on-fail --names \"lib,attach,fit,fullscreen,search,terminado,webLinks,winptyCompat,zmodem,css\" \"tsc\" \"tsc -p ./src/addons/attach\" \"tsc -p ./src/addons/fit\" \"tsc -p ./src/addons/fullscreen\" \"tsc -p ./src/addons/search\" \"tsc -p ./src/addons/terminado\" \"tsc -p ./src/addons/webLinks\" \"tsc -p ./src/addons/winptyCompat\" \"tsc -p ./src/addons/zmodem\" \"gulp css\"",
6361
"build": "gulp build",

src/addons/fit/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"declaration": true,
1414
"preserveWatchOutput": true,
1515
"types": [
16-
"../../node_modules/@types/mocha",
17-
"../.."
16+
"../../node_modules/@types/mocha"
1817
]
1918
},
2019
"include": [
21-
"**/*.ts"
20+
"**/*.ts",
21+
"../../../typings/xterm.d.ts"
2222
]
2323
}

src/addons/fullscreen/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"declaration": true,
1414
"preserveWatchOutput": true,
1515
"types": [
16-
"../../node_modules/@types/mocha",
17-
"../.."
16+
"../../node_modules/@types/mocha"
1817
]
1918
},
2019
"include": [
21-
"**/*.ts"
20+
"**/*.ts",
21+
"../../../typings/xterm.d.ts"
2222
]
2323
}

src/addons/search/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"declaration": true,
1313
"preserveWatchOutput": true,
1414
"types": [
15-
"../../node_modules/@types/mocha",
16-
"../.."
15+
"../../node_modules/@types/mocha"
1716
]
1817
},
1918
"include": [
20-
"**/*.ts"
19+
"**/*.ts",
20+
"../../../typings/xterm.d.ts"
2121
]
2222
}

src/addons/terminado/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"declaration": true,
1313
"preserveWatchOutput": true,
1414
"types": [
15-
"../../node_modules/@types/mocha",
16-
"../.."
15+
"../../node_modules/@types/mocha"
1716
]
1817
},
1918
"include": [
20-
"**/*.ts"
19+
"**/*.ts",
20+
"../../../typings/xterm.d.ts"
2121
]
2222
}

src/addons/webLinks/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"declaration": true,
1414
"preserveWatchOutput": true,
1515
"types": [
16-
"../../node_modules/@types/mocha",
17-
"../.."
16+
"../../node_modules/@types/mocha"
1817
]
1918
},
2019
"include": [
21-
"**/*.ts"
20+
"**/*.ts",
21+
"../../../typings/xterm.d.ts"
2222
]
2323
}

src/addons/winptyCompat/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"declaration": true,
1313
"preserveWatchOutput": true,
1414
"types": [
15-
"../../node_modules/@types/mocha",
16-
"../.."
15+
"../../node_modules/@types/mocha"
1716
]
1817
},
1918
"include": [
20-
"**/*.ts"
19+
"**/*.ts",
20+
"../../../typings/xterm.d.ts"
2121
]
2222
}

src/addons/zmodem/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"declaration": true,
1313
"preserveWatchOutput": true,
1414
"types": [
15-
"../../node_modules/@types/mocha",
16-
"../.."
15+
"../../node_modules/@types/mocha"
1716
]
1817
},
1918
"include": [
20-
"**/*.ts"
19+
"**/*.ts",
20+
"../../../typings/xterm.d.ts"
2121
]
2222
}

0 commit comments

Comments
 (0)