docs: move build instructions from README to BUILDING.md

- Move detailed setup and build instructions from README.md to BUILDING.md
- Add concise reference to BUILDING.md in README.md
- Keep testing and other documentation in README.md
- Improve organization of documentation by separating build-specific content
This commit is contained in:
Matthew Raymer
2025-02-13 04:48:18 +00:00
parent d8c1a84cfe
commit ec1f50af69
6 changed files with 82 additions and 135 deletions

View File

@@ -1,6 +1,6 @@
import * as path from "path";
import { promises as fs } from "fs";
import { fileURLToPath } from 'url';
import { fileURLToPath } from "url";
export async function loadAppConfig() {
const packageJson = await loadPackageJson();
@@ -34,15 +34,16 @@ export async function loadAppConfig() {
sizes: "512x512",
type: "image/png",
purpose: "maskable",
}
]
}
},
],
},
},
aliasConfig: {
"@": path.resolve(path.dirname(__dirname), "src"),
buffer: path.resolve(path.dirname(__dirname), "node_modules", "buffer"),
"dexie-export-import/dist/import": "dexie-export-import/dist/import/index.js",
}
"dexie-export-import/dist/import":
"dexie-export-import/dist/import/index.js",
},
};
}