-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Styles needs to be an array * Update visual editor * Sync outline view up to Gutenberg * Remove TOC setting It’s now in the list view * First package bump * Fix jest build error * Fix lint errors * Update eslint * Update storybook * Bump all WP packages * Bundle * Bump minimum node version in tests * Further jest fixes * Lint fix * More updates * Use custom complimentary area Until I can figure out why the core one doesn’t work this is a workaround * Lint fixes * Update packages * Rebundle * Block another request * Fix e2e tests * Update builds * Update storybook * Fix linting * Rebundle
- Loading branch information
1 parent
eb0ba38
commit 60228c6
Showing
332 changed files
with
8,142 additions
and
7,818 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
const path = require( 'path' ); | ||
|
||
module.exports = { | ||
core: { | ||
builder: 'webpack5', | ||
}, | ||
stories: [ '../src/**/*.stories.*', '../stories/**/*.stories.*' ], | ||
addons: [ '@storybook/addon-links', '@storybook/addon-essentials', '@storybook/preset-scss' ], | ||
}; | ||
stories: [ '../src/**/*.stories.*', '../stories/**/*.stories.*' ], | ||
addons: [ '@storybook/addon-links', '@storybook/addon-essentials', '@storybook/preset-scss', '@storybook/addon-mdx-gfm', '@storybook/preset-typescript' | ||
], | ||
typescript: { | ||
check: false, | ||
checkOptions: {}, | ||
reactDocgen: 'react-docgen-typescript', | ||
reactDocgenTypescriptOptions: { | ||
shouldExtractLiteralValuesFromEnum: true, | ||
propFilter: ( prop ) => ( prop.parent ? !/node_modules/.test( prop.parent.fileName ) : true ), | ||
}, | ||
}, | ||
framework: { | ||
name: '@storybook/react-webpack5', | ||
options: {} | ||
}, | ||
docs: { | ||
autodocs: true | ||
}, | ||
core: { | ||
disableTelemetry: true, // 👈 Disables telemetry | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.