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
fix: types in dist build
author
Steven Vandevelde
date
1 year ago
(May 4, 2025, 5:42 PM +0200)
commit
e87d2ceb
e87d2ceb2cb2da2dff67c4283c1428672ba4984d
parent
39a45257
39a45257263807b54b05b94e11c0c5d3a8e61739
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
tasks
copy-types.ts
+1
-1
tasks/copy-types.ts
Reviewed
···
4
4
const it = walk("./src/pages/", { exts: [".d.ts"] });
5
5
6
6
for await (const item of it) {
7
7
-
const target = `dist/${item.path.replace("src/applets/", "")}`;
7
7
+
const target = `dist/${item.path.replace("src/pages/", "")}`;
8
8
const targetDir = target.split("/").slice(0, -1).join("/");
9
9
10
10
Deno.mkdirSync(targetDir, { recursive: true });