Skip to content

Commit

Permalink
fix: update rollup config and incorrect readme import (#14392)
Browse files Browse the repository at this point in the history
* fix: update rollup config and incorrect readme import

* Change files
  • Loading branch information
chrisdholt authored Aug 6, 2020
1 parent 0c8f578 commit ffe5831
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "patch",
"comment": "fix: update rollup config and incorrect readme import",
"packageName": "@fluentui/web-components",
"email": "chhol@microsoft.com",
"dependentChangeType": "patch",
"date": "2020-08-06T21:14:52.517Z"
}
2 changes: 1 addition & 1 deletion packages/web-components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ yarn add @fluentui/web-components
Within your JavaScript or TypeScript code, you can then import library APIs like this:

```ts
import { FASTAnchor } from '@fluentui/web-components';
import { FluentAnchor } from '@fluentui/web-components';
```

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).
Expand Down
4 changes: 2 additions & 2 deletions packages/web-components/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export default [
input: 'src/index-rollup.ts',
output: [
{
file: 'dist/fast-components-msft.js',
file: 'dist/web-components.js',
format: 'esm',
},
{
file: 'dist/fast-components-msft.min.js',
file: 'dist/web-components.min.js',
format: 'esm',
plugins: [terser()],
},
Expand Down

0 comments on commit ffe5831

Please sign in to comment.