-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
7865e82
commit bf87c1a
Showing
31 changed files
with
5,297 additions
and
143 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,4 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft.schema.json", | ||
"extends": "../node_modules/acaad.toolchain/config/heft.json" | ||
} |
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
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
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,5 @@ | ||
export { AcaadError } from "./AcaadError"; | ||
export { AcaadServerUnreachableError } from "./AcaadServerUnreachableError"; | ||
export { CalloutError } from "./CalloutError"; | ||
export { ConfigurationError } from "./ConfigurationError"; | ||
export { ResponseSchemaError } from "./ResponseSchemaError"; |
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,10 @@ | ||
export { ComponentManager } from "./ComponentManager"; | ||
|
||
export * from "./model/auth"; | ||
export * from "./model/open-api"; | ||
export * from "./errors"; | ||
export * from "./model"; | ||
|
||
export { IConnectedServiceAdapter, IConnectedServiceContext, ICsLogger, OutboundStateChangeCallback, ChangeType } from "./interfaces"; | ||
|
||
export { FrameworkContainer } from "./FrameworkContainer"; |
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,2 @@ | ||
export * from "./IConnectedServiceAdapter"; | ||
export * from "./IConnectedServiceContext"; |
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 @@ | ||
export { AcaadAuthentication } from "./AcaadAuthentication"; |
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,9 @@ | ||
export { AcaadHost } from "./connection/AcaadHost"; | ||
export { AcaadOutcome } from "./AcaadOutcome"; | ||
export { AcaadUnitOfMeasure } from "./AcaadUnitOfMeasure"; | ||
|
||
export { Component, ComponentTypes } from "./Component"; | ||
export { ComponentDescriptor } from "./ComponentDescriptor"; | ||
export { ComponentType } from "./ComponentType"; | ||
|
||
export { DependencyInjectionTokens } from "./DependencyInjectionTokens"; |
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 @@ | ||
export { AcaadServerMetadata } from "./OpenApiDefinition"; |
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,33 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft.schema.json", | ||
|
||
"phasesByName": { | ||
"build": { | ||
"cleanFiles": [{ "sourcePath": "dist" }, { "sourcePath": "lib" }], | ||
"tasksByName": { | ||
"typescript": { | ||
"taskPlugin": { | ||
"pluginPackage": "@rushstack/heft-typescript-plugin" | ||
} | ||
}, | ||
"lint": { | ||
"taskDependencies": ["typescript"], | ||
"taskPlugin": { | ||
"pluginPackage": "@rushstack/heft-lint-plugin" | ||
} | ||
} | ||
} | ||
}, | ||
|
||
"test": { | ||
"phaseDependencies": ["build"], | ||
"tasksByName": { | ||
"jest": { | ||
"taskPlugin": { | ||
"pluginPackage": "@rushstack/heft-jest-plugin" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,18 @@ | ||
// The "rig.json" file directs tools to look for their config files in an external package. | ||
// Documentation for this system: https://www.npmjs.com/package/@rushstack/rig-package | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", | ||
|
||
/** | ||
* (Required) The name of the rig package to inherit from. | ||
* It should be an NPM package name with the "-rig" suffix. | ||
*/ | ||
"rigPackageName": "@rushstack/heft-node-rig" | ||
|
||
/** | ||
* (Optional) Selects a config profile from the rig package. The name must consist of | ||
* lowercase alphanumeric words separated by hyphens, for example "sample-profile". | ||
* If omitted, then the "default" profile will be used." | ||
*/ | ||
// "rigProfile": "your-profile-name" | ||
} |
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,22 @@ | ||
{ | ||
"name": "acaad.toolchain", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "heft build --clean" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@tsconfig/node20": "~20.1.4", | ||
"@rushstack/heft": "~0.68.13", | ||
"@rushstack/heft-typescript-plugin": "~0.6.6", | ||
"@rushstack/heft-node-rig": "~2.6.49", | ||
"@types/node": "~22.10.7", | ||
"typescript": "~5.7.3", | ||
"@rushstack/heft-lint-plugin": "~0.5.12", | ||
"@rushstack/heft-jest-plugin": "~0.14.3" | ||
} | ||
} |
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,7 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
|
||
/** | ||
* @public | ||
*/ | ||
export class TestClass {} // tslint:disable-line:export-name |
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,31 @@ | ||
{ | ||
"extends": "@tsconfig/node20/tsconfig.json", | ||
"importHelpers": true, | ||
"compilerOptions": { | ||
"noEmit": true, | ||
"allowJs": true, | ||
"checkJs": true, | ||
"noEmitOnError": true, | ||
"outDir": "./build/", | ||
"removeComments": false, | ||
"resolveJsonModule": true, | ||
"sourceMap": true, | ||
"inlineSourceMap": false, | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"strict": true, | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"declarationMap": true, | ||
"module": "commonjs", | ||
"types": ["node"] | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"build/**", | ||
"node_modules/**", | ||
"widgets/**" | ||
] | ||
} |
Oops, something went wrong.