Skip to content

Commit

Permalink
chore: copy over source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud committed Sep 28, 2024
1 parent 3ba2ec8 commit 6a518ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vscode-extension/rspack.browser.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ const config = {
from: "../node_modules/some-sass-language-server/dist/**/*.js",
to: "[name][ext]",
},
{
from: "../node_modules/some-sass-language-server/dist/**/*.js.map",
to: "[name][ext]",
},
],
}),
// Only register the plugin when RSDOCTOR is true, as the plugin will increase the build time.
Expand Down
4 changes: 4 additions & 0 deletions vscode-extension/rspack.node.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ const config = {
from: "../node_modules/some-sass-language-server/dist/**/*.js",
to: "[name][ext]",
},
{
from: "../node_modules/some-sass-language-server/dist/**/*.js.map",
to: "[name][ext]",
},
],
}),
// Only register the plugin when RSDOCTOR is true, as the plugin will increase the build time.
Expand Down

0 comments on commit 6a518ba

Please sign in to comment.