Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Omit example imgs & docs.scss from prod bundle #1553

Merged
merged 1 commit into from
Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/webpack.system.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const webpackConfig = merge(baseWebpackConfig, {
from: path.resolve(__dirname, "../src/assets"),
to: config.system.assetsSubDirectory,
globOptions: {
ignore: [".*"],
ignore: [".*", "**/docs.scss", "**/examples/**"],
},
},
{
Expand Down
23 changes: 23 additions & 0 deletions changelog/unreleased/change-drop-deprecated-components
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,27 @@ Change: Remove deprecated components
To focus on the quality of the currently relevant components and to reduce bundle size,
we are dropping a bunch of deprecated components from our design system.

List of removed components, for reference:

- OcActionDrop.vue
- OcAppLayout.vue
- OcAutocomplete.vue
- OcDatepicker.vue
- OcDisclosureDrop.vue
- OcNav.vue
- OcNavItem.vue
- OcNavbar.vue
- OcTabItem.vue
- OcTabbed.vue
- OcTabbedPanel.vue
- OcTabbedTab.vue
- OcTabs.vue
- OcTopBar.vue
- OcUser.vue
- _OcNavbarItem.vue
- _OcSidebarNavDivider.vue
- _OcSidebarNavHeader.vue
- _OcTopBarItem.vue
- _OcTopBarLogo.vue

https://github.com/owncloud/owncloud-design-system/pull/1545
7 changes: 7 additions & 0 deletions changelog/unreleased/change-production-bundle-content
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Change: Production Bundle Content

In the past, we shipped the docs `.scss` file and
some example images which now have been removed
from the production bundle to reduce size.

https://github.com/owncloud/owncloud-design-system/pull/1553