Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 99934c3

Browse files
doc: Use correct accessibility package version in codesandbox (#2314)
* doc: Use correct accessibility package version in codesandbox * changelog
1 parent 7270655 commit 99934c3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
5050

5151
### Documentation
5252
- Add per-component performance charts @miroslavstastny ([#2240](https://github.com/microsoft/fluent-ui-react/pull/2240))
53+
- Fix dependencies in project exported to codesandbox @miroslavstastny ([#2314](https://github.com/microsoft/fluent-ui-react/pull/2314))
5354

5455
<!--------------------------------[ v0.43.1 ]------------------------------- -->
5556
## [v0.43.1](https://github.com/microsoft/fluent-ui-react/tree/v0.43.1) (2020-01-30)

docs/src/components/Playground/renderConfig.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import * as React from 'react'
88
import * as ReactDOM from 'react-dom'
99
import * as Classnames from 'classnames'
1010

11+
const accessibilityPackageJson = require('@fluentui/accessibility/package.json')
1112
const docsComponentsPackageJson = require('@fluentui/docs-components/package.json')
1213
const projectPackageJson = require('@fluentui/react/package.json')
1314

@@ -23,7 +24,7 @@ export const babelConfig = {
2324

2425
export const imports: Record<string, { version: string; module: any }> = {
2526
'@fluentui/accessibility': {
26-
version: projectPackageJson.version,
27+
version: accessibilityPackageJson.version,
2728
module: Accessibility,
2829
},
2930

0 commit comments

Comments
 (0)