Skip to content

Commit 3446a33

Browse files
committedNov 2, 2020
fix: šŸ› configure rollup copy correctly
1 parent 3299344 commit 3446a33

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

ā€Žpackages/rich-text-types/rollup.config.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ const customConfig = () => {
1111
plugins: [
1212
...baseConfig.plugins,
1313
copy({
14-
"src/schemas/generated": "dist/lib/schemas/generated"
15-
})
16-
]
17-
}
18-
}
14+
targets: {
15+
'src/schemas/generated': 'dist/lib/schemas/generated',
16+
},
17+
}),
18+
],
19+
};
20+
};
1921

2022
export default customConfig();

0 commit comments

Comments
 (0)
Please sign in to comment.