From c818381ef1bf6b5030eb47ac69939e770df34edf Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Mon, 27 Apr 2020 11:25:17 +0530 Subject: [PATCH] add ligatures addon config --- .eslintrc.json | 6 ++++-- bin/publish.js | 1 + tsconfig.all.json | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 32f8e992..64d99769 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -18,12 +18,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" diff --git a/bin/publish.js b/bin/publish.js index 88e4d0c0..fd0015d6 100644 --- a/bin/publish.js +++ b/bin/publish.js @@ -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'), diff --git a/tsconfig.all.json b/tsconfig.all.json index a8febb72..98b4e97b 100644 --- a/tsconfig.all.json +++ b/tsconfig.all.json @@ -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" } ] }