-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
242 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module.exports = { | ||
plugins: ['@typescript-eslint/eslint-plugin', 'eslint-plugin-tsdoc'], | ||
extends: ['plugin:@typescript-eslint/recommended'], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: './tsconfig.json', | ||
tsconfigRootDir: __dirname, | ||
ecmaVersion: 2018, | ||
sourceType: 'module' | ||
}, | ||
rules: { | ||
'tsdoc/syntax': 'warn' | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,19 @@ | |
"clean": "yarn workspaces foreach --all run clean", | ||
"build": "yarn workspaces foreach --all run build", | ||
"test": "yarn workspaces foreach --all run test", | ||
"dev": "concurrently \"cd packages/addon && yarn dev\" \"cd packages/fdc3-workbench && yarn dev\" \"cd packages/demo && yarn dev\"" | ||
"dev": "concurrently \"cd packages/addon && yarn dev\" \"cd packages/fdc3-workbench && yarn dev\" \"cd packages/demo && yarn dev\"", | ||
"docs": "yarn typedocs --out docs packages/fdc3-common/index.ts /packages/client/**" | ||
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"concurrently": "8.2.2", | ||
"eslint": "7.17.0", | ||
"prettier": "2.2.1", | ||
"rimraf": "^5.0.7", | ||
"typedoc": "^0.26.4", | ||
"typescript": "^5.3.2" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Loader, Options } from "@kite9/fdc3-common"; | ||
|
||
/** | ||
* This is the default fallback strategy which just throws an | ||
* error because the desktop agent can't be found. | ||
*/ | ||
const fail: Loader = (_options: Options) => { | ||
|
||
throw new Error("No desktop agent found"); | ||
|
||
} | ||
|
||
export default fail |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.