Skip to content

Commit 7e9984a

Browse files
authored
Merge pull request #293013 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 0c335ce + 8cc6418 commit 7e9984a

21 files changed

+35
-35
lines changed

articles/azure-fluid-relay/how-tos/test-automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fluid.url: https://fluidframework.com/docs/testing/testing/
99

1010
# How to: Use test automation with Azure Fluid Relay
1111

12-
Testing and automation are crucial to maintaining the quality and longevity of your code. Internally, Fluid uses a range of unit and integration tests powered by [Mocha](https://mochajs.org/), [Jest](https://jestjs.io/), [Puppeteer](https://github.com/puppeteer/puppeteer), and [Webpack](https://webpack.js.org/).
12+
Testing and automation are crucial to maintaining the quality and longevity of your code. Internally, Fluid uses a range of unit and integration tests powered by [Mocha](https://mochajs.org/), [Jest](https://jestjs.io/), [Puppeteer](https://github.com/puppeteer/puppeteer), and [webpack](https://webpack.js.org/).
1313

1414
You can run tests using the local [@fluidframework/azure-local-service](https://www.npmjs.com/package/@fluidframework/azure-local-service) or using a test tenant in Azure Fluid Relay service. AzureClient can be configured to connect to both a remote service and a local service, which enables you to use a single client type between tests against live and local service instances. The only difference is the configuration used to create the client.
1515

articles/azure-fluid-relay/how-tos/use-audience-in-fluid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ npm run start
361361
Navigate to `localhost:3000` on a browser tab to view the running application. To create a new container, select a user ID button while leaving the container ID input blank. To simulate a new user joining the container session, open a new browser tab and navigate to `localhost:3000`. This time, input the container ID value which can be found from first browser tab's url proceeding `http://localhost:3000/#`.
362362

363363
> [!NOTE]
364-
> You may need to install an additional dependency to make this demo compatible with Webpack 5. If you receive a compilation error related to a "buffer" or "url" package, please run `npm install -D buffer url` and try again. This will be resolved in a future release of Fluid Framework.
364+
> You may need to install an additional dependency to make this demo compatible with webpack 5. If you receive a compilation error related to a "buffer" or "url" package, please run `npm install -D buffer url` and try again. This will be resolved in a future release of Fluid Framework.
365365
366366
## Next steps
367367

articles/azure-functions/functions-networking-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To learn how to set up service endpoints, see [Establish Azure Functions private
7878

7979
## Outbound networking features
8080

81-
You can use the features in this section toto manage outbound connections made by your app.
81+
You can use the features in this section to manage outbound connections made by your app.
8282

8383
### Virtual network integration
8484

articles/azure-maps/how-to-use-indoor-module.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To use the globally hosted Azure Content Delivery Network version of the *Azure
5757
import * as indoor from "azure-maps-indoor";
5858
```
5959
60-
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
60+
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
6161
6262
To begin, install style-loader and css-loader:
6363
@@ -71,7 +71,7 @@ To use the globally hosted Azure Content Delivery Network version of the *Azure
7171
import "azure-maps-indoor/dist/atlas-indoor.min.css";
7272
```
7373
74-
Then add loaders to the module rules portion of the Webpack config:
74+
Then add loaders to the module rules portion of the webpack config:
7575
7676
```js
7777
module.exports = {
@@ -305,4 +305,4 @@ Learn more about how to add more data to your map:
305305
[Subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
306306
[Tileset List API]: /rest/api/maps-creator/tileset/list
307307
[visual style editor]: https://azure.github.io/Azure-Maps-Style-Editor
308-
[Webpack]: https://webpack.js.org
308+
[webpack]: https://webpack.js.org

articles/azure-maps/how-to-use-npm-package.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ npm install azure-maps-control
3232

3333
This package includes a minified version of the source code, CSS Style Sheet, and the TypeScript definitions for the Azure Maps map control.
3434

35-
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
35+
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
3636

3737
To begin, install `style-loader` and `css-loader`:
3838

@@ -46,7 +46,7 @@ Inside your source file, import _atlas.min.css_:
4646
import "azure-maps-control/dist/atlas.min.css";
4747
```
4848

49-
Then add loaders to the module rules portion of the Webpack config:
49+
Then add loaders to the module rules portion of the webpack config:
5050

5151
```js
5252
module.exports = {
@@ -81,7 +81,7 @@ Embed a map in a web page using the map control npm package.
8181
npm install azure-maps-control
8282
```
8383
84-
3. Install Webpack and other dev dependencies.
84+
3. Install webpack and other dev dependencies.
8585
8686
```powershell
8787
npm install --save-dev webpack webpack-cli style-loader css-loader
@@ -113,7 +113,7 @@ Embed a map in a web page using the map control npm package.
113113
}
114114
```
115115
116-
5. Create a Webpack config file named _webpack.config.js_ in the project's root folder. Include these settings in the config file.
116+
5. Create a webpack config file named _webpack.config.js_ in the project's root folder. Include these settings in the config file.
117117
118118
```js
119119
module.exports = {
@@ -265,7 +265,7 @@ The following sample shows how to import a module and use it in your application
265265
document.body.onload = onload;
266266
```
267267
268-
4. Webpack 5 may throw errors about not being able to resolve some node.js core modules. Add these settings to your Webpack config file to fix the problem.
268+
4. Webpack 5 may throw errors about not being able to resolve some node.js core modules. Add these settings to your webpack config file to fix the problem.
269269
270270
```js
271271
module.exports = {
@@ -305,7 +305,7 @@ Learn best practices and see samples:
305305
[Azure Maps account]: quick-demo-map-app.md#create-an-azure-maps-account
306306
[subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
307307
[authentication options]: /javascript/api/azure-maps-control/atlas.authenticationoptions
308-
[Webpack]: https://webpack.js.org/
308+
[webpack]: https://webpack.js.org/
309309
[style-loader]: https://webpack.js.org/loaders/style-loader/
310310
[azure-maps-drawing-tools]: ./set-drawing-options.md
311311
[azure-maps-indoor]: ./how-to-use-indoor-module.md

articles/azure-maps/set-drawing-options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The Azure Maps Web SDK provides a [drawing tools module]. This module makes it e
3535
import * as drawing from "azure-maps-drawing-tools";
3636
```
3737

38-
You would also need to embed the CSS for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
38+
You would also need to embed the CSS for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
3939

4040
To begin, install style-loader and css-loader:
4141

@@ -49,7 +49,7 @@ The Azure Maps Web SDK provides a [drawing tools module]. This module makes it e
4949
import "azure-maps-drawing-tools/dist/atlas-drawing.min.css";
5050
```
5151

52-
Then add loaders to the module rules portion of the Webpack config:
52+
Then add loaders to the module rules portion of the webpack config:
5353

5454
```js
5555
module.exports = {
@@ -226,4 +226,4 @@ Learn more about the classes and methods used in this article:
226226
[Map]: /javascript/api/azure-maps-control/atlas.map
227227
[React to drawing events]: drawing-tools-events.md
228228
[style-loader]: https://webpack.js.org/loaders/style-loader/
229-
[Webpack]: https://webpack.js.org/
229+
[webpack]: https://webpack.js.org/

articles/communication-services/quickstarts/chat/includes/meeting-interop-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The `--save` option lists the library as a dependency in your **package.json** f
5353

5454
## Set up the app framework
5555

56-
This quickstart uses Webpack to bundle the application assets. Run the following command to install the Webpack, webpack-cli and webpack-dev-server npm packages and list them as development dependencies in your **package.json**:
56+
This quickstart uses webpack to bundle the application assets. Run the following command to install the webpack, webpack-cli and webpack-dev-server npm packages and list them as development dependencies in your **package.json**:
5757

5858
```console
5959
@@ -339,7 +339,7 @@ var displayName = call.remoteParticipants.find(p => p.identifier.communicationUs
339339
340340
## Run the code
341341
342-
Webpack users can use the `webpack-dev-server` to build and run your app. Run the following command to bundle your application host on a local webserver:
342+
Use the `webpack-dev-server` to build and run your app. Run the following command to bundle your application host on a local webserver:
343343
344344
```console
345345
npx webpack-dev-server --entry ./client.js --output bundle.js --debug --devtool inline-source-map

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-call-web.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ npm install @azure/[email protected] --save
5353

5454
### Set up the app framework
5555

56-
This quickstart uses Webpack to bundle the application assets. Run the following command to install the `webpack`, `webpack-cli` and `webpack-dev-server` npm packages and list them as development dependencies in your `package.json`:
56+
This quickstart uses webpack to bundle the application assets. Run the following command to install the `webpack`, `webpack-cli` and `webpack-dev-server` npm packages and list them as development dependencies in your `package.json`:
5757

5858
```console
5959
npm install copy-webpack-plugin@^11.0.0 webpack@^5.88.2 webpack-cli@^5.1.4 webpack-dev-server@^4.15.1 --save-dev

articles/communication-services/quickstarts/voice-video-calling/includes/get-started/get-started-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The `--save` option lists the library as a dependency in your **package.json** f
6161

6262
### Set up the app framework
6363

64-
This quickstart uses Webpack to bundle the application assets. Run the following command to install the `webpack`, `webpack-cli` and `webpack-dev-server` npm packages and list them as development dependencies in your `package.json`:
64+
This quickstart uses webpack to bundle the application assets. Run the following command to install the `webpack`, `webpack-cli` and `webpack-dev-server` npm packages and list them as development dependencies in your `package.json`:
6565

6666
```console
6767
npm install copy-webpack-plugin@^11.0.0 webpack@^5.88.2 webpack-cli@^5.1.4 webpack-dev-server@^4.15.1 --save-dev

articles/communication-services/quickstarts/voice-video-calling/includes/video-calling/video-calling-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ npm install @azure/communication-calling --save
5454

5555
### Set up the app framework
5656

57-
This quickstart uses Webpack to bundle the application assets. Run the following command to install the `webpack`, `webpack-cli` and `webpack-dev-server` npm packages and list them as development dependencies in your `package.json`:
57+
This quickstart uses webpack to bundle the application assets. Run the following command to install the `webpack`, `webpack-cli` and `webpack-dev-server` npm packages and list them as development dependencies in your `package.json`:
5858

5959
```console
6060
npm install copy-webpack-plugin@^11.0.0 webpack@^5.88.2 webpack-cli@^5.1.4 webpack-dev-server@^4.15.1 --save-dev

0 commit comments

Comments
 (0)