Skip to content

Commit

Permalink
add copy back to webpack config
Browse files Browse the repository at this point in the history
Signed-off-by: Billie Simmons <49491949+JillieBeanSim@users.noreply.github.com>
  • Loading branch information
JillieBeanSim committed Aug 18, 2023
1 parent 38693c7 commit 40670c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/zowe-explorer/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ const config = {
},
],
},
plugins: [new webpack.BannerPlugin(fs.readFileSync("../../scripts/LICENSE_HEADER", "utf-8"))],
plugins: [
new webpack.BannerPlugin(fs.readFileSync("../../scripts/LICENSE_HEADER", "utf-8")),
new CopyPlugin({
patterns: [{ from: "../../node_modules/@zowe/secrets-for-zowe-sdk/prebuilds", to: "../../prebuilds/" }],
}),
],
};

module.exports = config;

0 comments on commit 40670c3

Please sign in to comment.