Skip to content

Commit ffe5831

Browse files
authored
fix: update rollup config and incorrect readme import (#14392)
* fix: update rollup config and incorrect readme import * Change files
1 parent 0c8f578 commit ffe5831

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"type": "patch",
3+
"comment": "fix: update rollup config and incorrect readme import",
4+
"packageName": "@fluentui/web-components",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch",
7+
"date": "2020-08-06T21:14:52.517Z"
8+
}

packages/web-components/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ yarn add @fluentui/web-components
2222
Within your JavaScript or TypeScript code, you can then import library APIs like this:
2323

2424
```ts
25-
import { FASTAnchor } from '@fluentui/web-components';
25+
import { FluentAnchor } from '@fluentui/web-components';
2626
```
2727

2828
Looking for a setup that integrates with a particular front-end framework or bundler? Check out [our integration docs](http://fast.design/docs/integrations/introduction).

packages/web-components/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ export default [
1515
input: 'src/index-rollup.ts',
1616
output: [
1717
{
18-
file: 'dist/fast-components-msft.js',
18+
file: 'dist/web-components.js',
1919
format: 'esm',
2020
},
2121
{
22-
file: 'dist/fast-components-msft.min.js',
22+
file: 'dist/web-components.min.js',
2323
format: 'esm',
2424
plugins: [terser()],
2525
},

0 commit comments

Comments
 (0)