Skip to content

Commit fcc660f

Browse files
chore(all): exclude stories and tests from the rollup builds (#752)
* chore(core): fix extension of stories .ts -> .tsx (impacts: rollup) * chore(all): exclude test files from rollup builds
1 parent 6de1ebe commit fcc660f

File tree

7 files changed

+1
-1
lines changed

7 files changed

+1
-1
lines changed

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default ({
1111
tsPluginOptions = {
1212
tsconfig: 'src/tsconfig.json',
1313
composite: false,
14-
exclude: ['**/*.stories.tsx']
14+
exclude: ['**/*.stories.tsx', '**/*.test.ts', '**/*.test.tsx']
1515
}
1616
} = {}) => ({
1717
input: 'src/index.ts',

0 commit comments

Comments
 (0)