alpha
Login
or
Join now
tokono.ma
/
diffuse-applets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Experiment to rebuild Diffuse using web applets.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: deploy to netlify
author
Steven Vandevelde
date
1 year ago
(May 29, 2025, 11:46 PM +0200)
commit
d04bdb9a
d04bdb9abc6eeabbf40af39390ec8f4c157363b9
parent
3b4444cb
3b4444cbe4c7b1ce47fad7ffdf7e0390a471351c
+5
3 changed files
Expand all
Collapse all
Unified
Split
.gitignore
deno.json
netlify.toml
+1
.gitignore
Reviewed
···
1
1
.astro
2
2
.dprc
3
3
+
.netlify
3
4
dist
4
5
node_modules
5
6
public/applets/
+1
deno.json
Reviewed
···
10
10
"dependencies": ["astro:build"]
11
11
},
12
12
"copy-types": "deno run --allow-read --allow-write tasks/copy-types.ts",
13
13
+
"deploy:netlify": "npx netlify deploy --prod",
13
14
"dev": "astro dev"
14
15
}
15
16
}
+3
netlify.toml
Reviewed
···
1
1
+
[build]
2
2
+
command = "deno run build"
3
3
+
publish = "dist"