Move the main module file into the repo root
This commit is contained in:
parent
5553123f75
commit
c95a09aa6e
2 changed files with 12 additions and 12 deletions
|
|
@ -1,25 +1,25 @@
|
||||||
// Data Models
|
// Data Models
|
||||||
import { AspectItemData } from "./models/AspectItemData.mjs";
|
import { AspectItemData } from "./module/models/AspectItemData.mjs";
|
||||||
import { PlayerData } from "./models/PlayerData.mjs";
|
import { PlayerData } from "./module/models/PlayerData.mjs";
|
||||||
import { SyncData } from "./models/SyncData.mjs";
|
import { SyncData } from "./module/models/SyncData.mjs";
|
||||||
|
|
||||||
// Main Documents
|
// Main Documents
|
||||||
import { PlayerActor } from "./documents/PlayerActor.mjs";
|
import { PlayerActor } from "./module/documents/PlayerActor.mjs";
|
||||||
import { AspectItem } from "./documents/AspectItem.mjs";
|
import { AspectItem } from "./module/documents/AspectItem.mjs";
|
||||||
|
|
||||||
// Character Sheets
|
// Character Sheets
|
||||||
import { AspectSheet } from "./sheets/AspectSheet.mjs";
|
import { AspectSheet } from "./module/sheets/AspectSheet.mjs";
|
||||||
import { PlayerSheet } from "./sheets/PlayerSheet.mjs";
|
import { PlayerSheet } from "./module/sheets/PlayerSheet.mjs";
|
||||||
import { BasicSyncSheet } from "./sheets/SyncVariations/BasicSyncSheet.mjs";
|
import { BasicSyncSheet } from "./module/sheets/SyncVariations/BasicSyncSheet.mjs";
|
||||||
|
|
||||||
// Utility imports
|
// Utility imports
|
||||||
import * as hbs from "./handlebars.mjs";
|
import * as hbs from "./module/handlebars.mjs";
|
||||||
|
|
||||||
// Non-Setup hooks
|
// Non-Setup hooks
|
||||||
import "./hooks/hotReload.mjs";
|
import "./module/hooks/hotReload.mjs";
|
||||||
|
|
||||||
// Misc Imports
|
// Misc Imports
|
||||||
import loadSettings from "./settings/index.mjs";
|
import loadSettings from "./module/settings/index.mjs";
|
||||||
|
|
||||||
|
|
||||||
Hooks.once(`init`, () => {
|
Hooks.once(`init`, () => {
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
],
|
],
|
||||||
"url": "https://github.com/Oliver-Akins/foundry.dungeon",
|
"url": "https://github.com/Oliver-Akins/foundry.dungeon",
|
||||||
"esmodules": [
|
"esmodules": [
|
||||||
"module/dotdungeon.js"
|
"dotdungeon.mjs"
|
||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
".styles/root.css"
|
".styles/root.css"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue