Skip to content

Commit 6fe5179

Browse files
authored
update CODEOWNERS, rename UsingMyGet.md to dailyBuilds.md (#2799)
* rename UsingMyGet.md to dailyBuilds.md * order schema owners
1 parent 5ac95ae commit 6fe5179

File tree

3 files changed

+29
-21
lines changed

3 files changed

+29
-21
lines changed

.github/CODEOWNERS

+6-6
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
/libraries/botframework-connector/tests/appCredentials.test.js @microsoft/bf-auth
7474

7575
# Bot Configuration
76-
/libraries/botframework-config/** @tomlm
76+
/libraries/botframework-config/** @microsoft/bb-js @tomlm
7777

7878
# Bot Framework Skills
7979
/libraries/botbuilder/src/**/botFrameworkHttpClient.ts @microsoft/bf-skills
@@ -92,7 +92,7 @@
9292
/libraries/botframework-schema/src/teams/** @microsoft/bf-teams
9393
/libraries/botframework-connector/src/teams/** @microsoft/bf-teams
9494
/libraries/botbuilder/tests/**/teams*.js @microsoft/bf-teams
95-
/lbiraries/teams-scenarios/** @microsoft/bf-teams
95+
/libraries/teams-scenarios/** @microsoft/bf-teams
9696

9797
# Ownership by specific files or file types
9898
# This section MUST stay at the bottom of the CODEOWNERS file. For more information, see
@@ -110,11 +110,11 @@
110110
/**/*tsconfig.json @microsoft/bb-js
111111

112112
# Critical monorepo files
113-
lerna.json @stevengum
114-
package.json @stevengum
113+
lerna.json @stevengum @joshgummersall
114+
package.json @stevengum @joshgummersall
115115

116116
# CODEOWNERS
117-
/.github/CODEOWNERS @stevengum @cleemullins @mrivera-ms
117+
/.github/CODEOWNERS @stevengum @cleemullins @joshgummersall @mrivera-ms
118118

119119
# .schema files
120-
/**/*.schema @chrimc62 @tomlm
120+
/**/*.schema @chrimc62 @joshgummersall @stevengum @tomlm

UsingMyGet.md

-15
This file was deleted.

dailyBuilds.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Consuming daily builds of the SDK
2+
3+
## Using npm
4+
Daily packages for the Bot Framework SDK for JS are published to [`npm`](https://www.npmjs.com/) and can be installed by using the `next` tag.
5+
6+
```bash
7+
npm i botbuilder@next botbuilder-dialogs@next
8+
```
9+
10+
## Using MyGet
11+
The Microsoft Bot Framework team maintains a [MyGet Gallery](https://botbuilder.myget.org) which contains feeds for the various SDK languages and other team projects. For JavaScript development, use the [JS daily build feed](https://botbuilder.myget.org/gallery/botbuilder-v4-js-daily).
12+
13+
To consume the latest daily builds of the Bot Framework SDK via MyGet, you'll need to configure `npm` to use the MyGet feed before installing.
14+
15+
### Configure npm registry
16+
17+
Use the following command to set the npm registry to access the MyGet feed.
18+
19+
- npm config set registry https://botbuilder.myget.org/F/botbuilder-v4-js-daily/npm/
20+
21+
To reset the registry in order to get the latest published version, run:
22+
23+
- npm config set registry https://registry.npmjs.org/

0 commit comments

Comments
 (0)