Skip to content

Commit ebd0b5e

Browse files
committed
update rollup-plugin-sucrase
1 parent 9ff39c0 commit ebd0b5e

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"rollup-plugin-json": "^3.0.0",
7878
"rollup-plugin-node-resolve": "^4.0.0",
7979
"rollup-plugin-replace": "^2.0.0",
80-
"rollup-plugin-sucrase": "^2.0.0",
80+
"rollup-plugin-sucrase": "^2.1.0",
8181
"rollup-plugin-typescript": "^1.0.0",
8282
"rollup-plugin-virtual": "^1.0.1",
8383
"rollup-watch": "^4.3.1",

rollup.config.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ export default [
4343
replace({
4444
__VERSION__: pkg.version
4545
}),
46-
resolve({
47-
extensions: ['.js', '.ts']
48-
}),
46+
resolve(),
4947
commonjs({
5048
include: ['node_modules/**']
5149
}),

src/compile/render-dom/wrappers/Fragment.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import AwaitBlock from './AwaitBlock';
33
import Body from './Body';
44
import DebugTag from './DebugTag';
55
import EachBlock from './EachBlock';
6-
import Element from './Element';
6+
import Element from './Element/index';
77
import Head from './Head';
88
import IfBlock from './IfBlock';
9-
import InlineComponent from './InlineComponent';
9+
import InlineComponent from './InlineComponent/index';
1010
import MustacheTag from './MustacheTag';
1111
import RawMustacheTag from './RawMustacheTag';
1212
import Slot from './Slot';

0 commit comments

Comments
 (0)