Skip to content

Commit

Permalink
feat: DevTools correctly ommitted at production
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Jan 27, 2023
1 parent 2352f83 commit 762d61f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/web/rollup.config.js
@@ -1,22 +1,22 @@
import { buildPackage } from './rollup.common';

export default [
// buildPackage({
// input: 'src/entry-development.ts',
// name: 'web.development',
// }),
buildPackage({
input: 'src/entry-development.ts',
name: 'web.development',
}),
buildPackage({
input: 'src/entry-production.ts',
name: 'web.production',
}),
// buildPackage({
// input: 'src/entry-universal.ts',
// name: 'web.universal',
// }),
buildPackage({
input: 'src/entry-universal.ts',
name: 'web.universal',
}),

// // in-context tools
// buildPackage({
// input: 'src/entry-tools.ts',
// name: 'in-context-tools',
// }),
// in-context tools
buildPackage({
input: 'src/entry-tools.ts',
name: 'in-context-tools',
}),
];

0 comments on commit 762d61f

Please sign in to comment.