Skip to content

Commit

Permalink
Revert "chore: fix code editor build"
Browse files Browse the repository at this point in the history
This reverts commit 79fb734.
  • Loading branch information
moughxyz committed Oct 17, 2022
1 parent 79fb734 commit bb8ac49
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ module.exports = {
new CopyPlugin({
patterns: [
{
from: path.resolve(__dirname, '../../../../../../node_modules/codemirror/lib'),
from: path.resolve(__dirname, 'node_modules/codemirror/lib'),
to: path.resolve(__dirname, 'dist/codemirror/lib'),
},
{
from: path.resolve(__dirname, '../../../../../../node_modules/codemirror/mode'),
from: path.resolve(__dirname, 'node_modules/codemirror/mode'),
to: path.resolve(__dirname, 'dist/codemirror/mode'),
},
{
from: path.resolve(__dirname, '../../../../../../node_modules/codemirror/addon'),
from: path.resolve(__dirname, 'node_modules/codemirror/addon'),
to: path.resolve(__dirname, 'dist/codemirror/addon'),
},
{
from: path.resolve(__dirname, '../../../../../../node_modules/codemirror/keymap/vim.js'),
from: path.resolve(__dirname, 'node_modules/codemirror/keymap/vim.js'),
to: path.resolve(__dirname, 'dist/codemirror/keymap'),
},
{
Expand Down

0 comments on commit bb8ac49

Please sign in to comment.