File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
packages/@lwc/rollup-plugin/src Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -63,12 +63,6 @@ export interface RollupLwcOptions {
6363
6464const PLUGIN_NAME = 'rollup-plugin-lwc-compiler' ;
6565
66- const DEFAULT_MODULES = [
67- { npm : '@lwc/engine-dom' } ,
68- { npm : '@lwc/synthetic-shadow' } ,
69- { npm : '@lwc/wire-service' } ,
70- ] ;
71-
7266const IMPLICIT_DEFAULT_HTML_PATH = '@lwc/resources/empty_html.js' ;
7367const EMPTY_IMPLICIT_HTML_CONTENT = 'export default void 0' ;
7468const IMPLICIT_DEFAULT_CSS_PATH = '@lwc/resources/empty_css.css' ;
@@ -205,7 +199,7 @@ export default function lwc(pluginOptions: RollupLwcOptions = {}): Plugin {
205199 rootDir = path . resolve ( rootDir ) ;
206200 }
207201
208- modules = [ ...modules , ... DEFAULT_MODULES , { dir : rootDir } ] ;
202+ modules = [ ...modules , { dir : rootDir } ] ;
209203 } ,
210204
211205 resolveId ( importee , importer ) {
You can’t perform that action at this time.
0 commit comments