Skip to content

Commit

Permalink
Add stubs for 3 teams modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalizationBuildProcess committed Sep 12, 2019
1 parent b0793ce commit 0d12b6b
Show file tree
Hide file tree
Showing 24 changed files with 412 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libraries/botbuilder-teams/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**/node_modules
/**/.vscode
/**/lib
coverage
.nyc_output
19 changes: 19 additions & 0 deletions libraries/botbuilder-teams/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extension": [
".js"
],
"include": [
"lib/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/tests/**",
"**/coverage/**",
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true,
"cache": true
}
20 changes: 20 additions & 0 deletions libraries/botbuilder-teams/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Bot Builder Teams

Teams extensions for Microsoft BotBuilder.

- [Installing](#installing)
- [Basic Use](#use)
- [Documentation](https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0)
- [Class Reference]
- [GitHub Repo](https://github.com/Microsoft/botbuilder-js)
- [Report Issues](https://github.com/Microsoft/botbuilder-js/issues)

## Installing

#### Use the Daily Build

## What's Included

## Use

## Examples
46 changes: 46 additions & 0 deletions libraries/botbuilder-teams/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "botbuilder-teams",
"author": "Microsoft Corp.",
"description": "Teams extensions for Microsoft BotBuilder.",
"version": "4.1.6",
"license": "MIT",
"keywords": [
"botbuilder",
"botframework",
"bots",
"chatbots",
"teams"
],
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"dependencies": {
},
"devDependencies": {
"@types/mocha": "^2.2.47",
"assert": "^1.4.1",
"chatdown": "^1.0.2",
"codelyzer": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^11.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0"
},
"scripts": {
"test": "tsc && nyc mocha tests/",
"build": "tsc",
"build-docs": "",
"clean": "erase /q /s .\\lib",
"set-version": "npm version --allow-same-version ${Version}"
},
"files": [
"/lib",
"/src"
]
}
8 changes: 8 additions & 0 deletions libraries/botbuilder-teams/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* @module botbuilder-teams
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export * from './module1';
10 changes: 10 additions & 0 deletions libraries/botbuilder-teams/src/module1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* @module botbuilder-teams
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export function dummy(): any {
return 0;
}
15 changes: 15 additions & 0 deletions libraries/botbuilder-teams/tests/Test1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See file LICENSE in the project root
* for license information.
*/

const assert = require('assert');

describe('Test1', function() {

it('should pass', function (done) {
assert(1);
});

});
14 changes: 14 additions & 0 deletions libraries/botbuilder-teams/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"outDir": "./lib",
"rootDir": "./src",
"types" : ["node"]
},
"include": [
"src/**/*"
]
}
5 changes: 5 additions & 0 deletions libraries/botframework-connector-teams/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**/node_modules
/**/.vscode
/**/lib
coverage
.nyc_output
19 changes: 19 additions & 0 deletions libraries/botframework-connector-teams/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extension": [
".js"
],
"include": [
"lib/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/tests/**",
"**/coverage/**",
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true,
"cache": true
}
20 changes: 20 additions & 0 deletions libraries/botframework-connector-teams/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Bot Framework Connector Teams

Teams extensions for Microsoft Bot Framework Connector.

- [Installing](#installing)
- [Basic Use](#use)
- [Documentation](https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0)
- [Class Reference]
- [GitHub Repo](https://github.com/Microsoft/botbuilder-js)
- [Report Issues](https://github.com/Microsoft/botbuilder-js/issues)

## Installing

#### Use the Daily Build

## What's Included

## Use

## Examples
47 changes: 47 additions & 0 deletions libraries/botframework-connector-teams/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "botframework-connector-teams",
"author": "Microsoft Corp.",
"description": "Teams extensions for Microsoft BotFramework Connector.",
"version": "4.1.6",
"license": "MIT",
"keywords": [
"botbuilder",
"botframework",
"connector",
"bots",
"chatbots",
"teams"
],
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"dependencies": {
},
"devDependencies": {
"@types/mocha": "^2.2.47",
"assert": "^1.4.1",
"chatdown": "^1.0.2",
"codelyzer": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^11.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0"
},
"scripts": {
"test": "tsc && nyc mocha tests/",
"build": "tsc",
"build-docs": "",
"clean": "erase /q /s .\\lib",
"set-version": "npm version --allow-same-version ${Version}"
},
"files": [
"/lib",
"/src"
]
}
8 changes: 8 additions & 0 deletions libraries/botframework-connector-teams/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* @module botframework-connector-teams
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export * from './module1';
10 changes: 10 additions & 0 deletions libraries/botframework-connector-teams/src/module1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* @module botframework-connector-teams
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export function dummy(): any {
return 0;
}
15 changes: 15 additions & 0 deletions libraries/botframework-connector-teams/tests/Test1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See file LICENSE in the project root
* for license information.
*/

const assert = require('assert');

describe('Test1', function() {

it('should pass', function (done) {
assert(1);
});

});
14 changes: 14 additions & 0 deletions libraries/botframework-connector-teams/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"outDir": "./lib",
"rootDir": "./src",
"types" : ["node"]
},
"include": [
"src/**/*"
]
}
5 changes: 5 additions & 0 deletions libraries/botframework-schema-teams/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**/node_modules
/**/.vscode
/**/lib
coverage
.nyc_output
19 changes: 19 additions & 0 deletions libraries/botframework-schema-teams/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extension": [
".js"
],
"include": [
"lib/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/tests/**",
"**/coverage/**",
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true,
"cache": true
}
20 changes: 20 additions & 0 deletions libraries/botframework-schema-teams/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Bot Builder Teams

Teams extensions for Microsoft BotBuilder.

- [Installing](#installing)
- [Basic Use](#use)
- [Documentation](https://docs.microsoft.com/en-us/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0)
- [Class Reference]
- [GitHub Repo](https://github.com/Microsoft/botbuilder-js)
- [Report Issues](https://github.com/Microsoft/botbuilder-js/issues)

## Installing

#### Use the Daily Build

## What's Included

## Use

## Examples
46 changes: 46 additions & 0 deletions libraries/botframework-schema-teams/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "botbuilder-teams",
"author": "Microsoft Corp.",
"description": "Teams extensions for Microsoft BotBuilder.",
"version": "4.1.6",
"license": "MIT",
"keywords": [
"botbuilder",
"botframework",
"bots",
"chatbots",
"teams"
],
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"dependencies": {
},
"devDependencies": {
"@types/mocha": "^2.2.47",
"assert": "^1.4.1",
"chatdown": "^1.0.2",
"codelyzer": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^11.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0"
},
"scripts": {
"test": "tsc && nyc mocha tests/",
"build": "tsc",
"build-docs": "",
"clean": "erase /q /s .\\lib",
"set-version": "npm version --allow-same-version ${Version}"
},
"files": [
"/lib",
"/src"
]
}

0 comments on commit 0d12b6b

Please sign in to comment.