vite-plugin-fvtt 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -648,7 +648,7 @@ async function foundryVTTPlugin(options = { buildPacks: true }) {
|
|
|
648
648
|
async generateBundle() {
|
|
649
649
|
for (const file of ["system.json", "module.json"]) {
|
|
650
650
|
const src = path.resolve(file);
|
|
651
|
-
if (!path_utils_default.getPublicDirFile(file) && await fs_utils_default.fileExists(src)) {
|
|
651
|
+
if (!await path_utils_default.getPublicDirFile(file) && await fs_utils_default.fileExists(src)) {
|
|
652
652
|
this.addWatchFile(src);
|
|
653
653
|
const manifest = await fs_utils_default.readJson(src);
|
|
654
654
|
this.emitFile({
|