mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
4a30e78b22
* chore: use pnpm to manage dependencies * Fix CI errors * Don't report Docker image size for external PRs * Fix pnpm-lock.yaml formatting * Fix module versions * Ignore pnpm-lock.yaml * Upgrade Cypress action for pnpm support * Set up node and pnpm before Cypress * Fix typescript issues * Include patches directory in Dockerfile * Fix Jest tests in CI * Update lockfile * Update lockfile * Clean up Dockerfile * Update pnpm-lock.yaml to reflect current package.json files * remove yarn-error.log from .gitignore * formatting * update data exploration readme * type jest.config.ts * fix @react-hook issues for jest * fix react-syntax-highlighter issues for jest * fix jest issues from query-selector-shadow-dom * fix transform ignore patterns and undo previous fixes * add missing storybook peer dependencies * fix nullish coalescing operator for storybook * reorder storybook plugins * update editor-update-tsd warning to new npm script * use legacy ssl for chromatic / node 18 compatibility * use pnpm for visual regression testing workflow * use node 16 for chromatic * add @babel/plugin-proposal-nullish-coalescing-operator as direct dependency * try fix for plugin-server * cleanup * fix comment and warning * update more comments * update playwright dockerfile * update plugin source types * conditional image size reporting * revert react-native instructions * less restrictive pnpm verions * use ref component name in line with style guide Co-authored-by: Jacob Gillespie <jacobwgillespie@gmail.com>
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
const { createEntry } = require('../webpack.config')
|
|
const babelConfig = require('../babel.config')
|
|
|
|
module.exports = {
|
|
stories: ['../frontend/src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
|
addons: [
|
|
{
|
|
name: '@storybook/addon-docs',
|
|
options: {
|
|
sourceLoaderOptions: {
|
|
injectStoryParameters: false,
|
|
},
|
|
},
|
|
},
|
|
'@storybook/addon-links',
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-storysource',
|
|
'@storybook/addon-a11y',
|
|
'storybook-addon-pseudo-states',
|
|
{
|
|
name: 'storybook-addon-turbo-build',
|
|
options: {
|
|
optimizationLevel: 3,
|
|
},
|
|
},
|
|
],
|
|
staticDirs: ['public'],
|
|
babel: async () => {
|
|
// compile babel to "defaults" target (ES5)
|
|
const envPreset = babelConfig.presets.find(
|
|
(preset) => Array.isArray(preset) && preset[0] === '@babel/preset-env'
|
|
)
|
|
envPreset[1].targets = 'defaults'
|
|
return babelConfig
|
|
},
|
|
webpackFinal: (config) => {
|
|
const mainConfig = createEntry('main')
|
|
return {
|
|
...config,
|
|
resolve: {
|
|
...config.resolve,
|
|
extensions: [...config.resolve.extensions, ...mainConfig.resolve.extensions],
|
|
alias: { ...config.resolve.alias, ...mainConfig.resolve.alias },
|
|
},
|
|
module: {
|
|
...config.module,
|
|
rules: [
|
|
...mainConfig.module.rules,
|
|
...config.module.rules.filter((rule) => rule.test.toString().includes('.mdx')),
|
|
{
|
|
test: /\.stories\.tsx?$/,
|
|
use: [
|
|
{
|
|
loader: require.resolve('@storybook/source-loader'),
|
|
options: { parser: 'typescript' },
|
|
},
|
|
],
|
|
enforce: 'pre',
|
|
},
|
|
],
|
|
},
|
|
}
|
|
},
|
|
features: {
|
|
postcss: false,
|
|
},
|
|
}
|