Skip to content

Commit

Permalink
add ligatures addon config
Browse files Browse the repository at this point in the history
  • Loading branch information
LabhanshAgrawal committed Apr 15, 2020
1 parent 535574d commit dd53a97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@
"addons/xterm-addon-web-links/src/tsconfig.json",
"addons/xterm-addon-webgl/src/tsconfig.json",
"addons/xterm-addon-serialize/src/tsconfig.json",
"addons/xterm-addon-serialize/benchmark/tsconfig.json"
"addons/xterm-addon-serialize/benchmark/tsconfig.json",
"addons/xterm-addon-ligatures/src/tsconfig.json"
],
"sourceType": "module"
},
"ignorePatterns": [
"**/typings/*.d.ts"
"**/typings/*.d.ts",
"**/node_modules"
],
"plugins": [
"@typescript-eslint"
Expand Down
1 change: 1 addition & 0 deletions bin/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ if (changedFiles.some(e => e.search(/^addons\//) === -1)) {
const addonPackageDirs = [
path.resolve(__dirname, '../addons/xterm-addon-attach'),
path.resolve(__dirname, '../addons/xterm-addon-fit'),
path.resolve(__dirname, '../addons/xterm-addon-ligatures'),
path.resolve(__dirname, '../addons/xterm-addon-search'),
path.resolve(__dirname, '../addons/xterm-addon-serialize'),
path.resolve(__dirname, '../addons/xterm-addon-unicode11'),
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.all.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
{ "path": "./addons/xterm-addon-web-links/src" },
{ "path": "./addons/xterm-addon-webgl/src" },
{ "path": "./addons/xterm-addon-serialize/src" },
{ "path": "./addons/xterm-addon-serialize/benchmark" }
{ "path": "./addons/xterm-addon-serialize/benchmark" },
{ "path": "./addons/xterm-addon-ligatures/src" }
]
}

0 comments on commit dd53a97

Please sign in to comment.