Update iCal-Datei download link in index.html, bump package version and copy files to docs folder.

This commit is contained in:
2023-12-27 23:55:29 +01:00
parent 05704ac899
commit 6c69245bda
7 changed files with 135 additions and 7 deletions

17
copy-release-docs.js Normal file
View File

@@ -0,0 +1,17 @@
//copy-release-docs.js
// Zweck: Kopiert die Dateien aus dem Ordner "public" in den Ordner "docs" und die Datei "dist/bundle.js" in den Ordner "docs/bundle.js"
const copy = require('fs-extra').copy;
// Funktion zum Kopieren von Dateien
async function copyFiles() {
try {
await copy('public', 'docs');
await copy('dist/bundle.js', 'docs/bundle.js');
console.log('Dateien erfolgreich kopiert.');
} catch (error) {
console.error('Fehler beim Kopieren der Dateien:', error);
}
}
// Kopiervorgang starten
copyFiles();