1
0

Update build scripts to process only index.md and copy assets; update deploy to include assets

This commit is contained in:
2025-09-14 19:43:37 +02:00
parent 2f33adc3d1
commit 366adf84ff
5 changed files with 38 additions and 37 deletions

View File

@@ -52,4 +52,5 @@ install:
# Deploy slides
deploy: build
@echo "Deploying slides..."
scp build/index.html tengo@tuttle.uberspace.de:/home/tengo/html/malta/
scp build/index.html tengo@tuttle.uberspace.de:/home/tengo/html/malta/
scp -r build/assets/ tengo@tuttle.uberspace.de:/home/tengo/html/malta/

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

File diff suppressed because one or more lines are too long

View File

@@ -47,7 +47,7 @@ figure {
}
</style>
![bg left](assets/oracle-lawsuit.png)
![bg left](./assets/oracle-lawsuit.png)
- **2014**: Oracle aquires a marketing tech start-up based in Cupertino, California, for around **$400 million**.

View File

@@ -4,11 +4,11 @@
"description": "",
"main": "index.js",
"scripts": {
"build": "marp --input-dir . --output build/",
"build": "marp index.md -o build/index.html && cp -r assets build/",
"dev": "marp --server ./",
"watch": "marp --watch slides/",
"export:pdf": "marp slides/*.md --pdf --output build/",
"export:html": "marp slides/*.md --html --output build/",
"watch": "marp --watch index.md",
"export:pdf": "marp index.md --pdf -o build/index.pdf",
"export:html": "marp index.md --html -o build/index.html && cp -r assets build/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],