Remove Charcoal references from the code for now

This commit is contained in:
Keavon Chambers 2022-01-12 03:56:28 -08:00
parent 7dfabcedfc
commit cbb4feba45
8 changed files with 6 additions and 40 deletions

View file

@ -57,12 +57,7 @@ module.exports = {
crateDirectory: path.resolve(__dirname, "wasm"),
// Remove when this issue is resolved: https://github.com/wasm-tool/wasm-pack-plugin/issues/93
outDir: path.resolve(__dirname, "wasm/pkg"),
watchDirectories: [
path.resolve(__dirname, "../editor"),
path.resolve(__dirname, "../graphene"),
path.resolve(__dirname, "../charcoal"),
path.resolve(__dirname, "../proc-macros"),
],
watchDirectories: ["../editor", "../graphene", "../proc-macros"].map((folder) => path.resolve(__dirname, folder)),
})
)
.end();