Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
Export VS Code Design System (#292)
Browse files Browse the repository at this point in the history
Description of changes

Fix a bug where the contents of `src/vscode-design-system.ts` and `src/custom-elements.ts` were not being exported by the package.

Also rename `FASTDesignSystem` to `VSCodeDesignSystem` in `src/index-rollup.ts`.
  • Loading branch information
hawkticehurst authored Nov 4, 2021
1 parent 66f9795 commit 3184944
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/index-rollup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ export * from './index';
* Only available if the components are added through a script tag
* rather than a module/build system.
*/
export const FASTDesignSystem =
export const VSCodeDesignSystem =
provideVSCodeDesignSystem().register(allComponents);
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

export * from './vscode-design-system';
export * from './custom-elements';

// Export components and classes
export * from './badge/index';
export * from './button/index';
Expand Down

0 comments on commit 3184944

Please sign in to comment.