Skip to content

Commit f9f969c

Browse files
authored
Merge pull request #192 from QuanfuXiao/master
Fix webpack html hot-update
2 parents 7ca562e + dd67244 commit f9f969c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/end-to-end/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = async (env, options) => {
1717
devtool: "source-map",
1818
entry: {
1919
polyfill: ["core-js/stable", "regenerator-runtime/runtime"],
20-
test: "./test/end-to-end/src/test-taskpane.ts",
20+
test: ["./test/end-to-end/src/test-taskpane.ts", "./test/end-to-end/src/test-taskpane.html"],
2121
},
2222
output: {
2323
path: path.resolve(__dirname, "testBuild"),

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = async (env, options) => {
1818
devtool: "source-map",
1919
entry: {
2020
polyfill: ["core-js/stable", "regenerator-runtime/runtime"],
21-
taskpane: "./src/taskpane/taskpane.ts",
21+
taskpane: ["./src/taskpane/taskpane.ts", "./src/taskpane/taskpane.html"],
2222
commands: "./src/commands/commands.ts",
2323
},
2424
output: {

0 commit comments

Comments
 (0)