Commit Graph

5 Commits (260426e3d874236708ec9becf158fcdf4fd7449a)

Author SHA1 Message Date
Mikael Finstad 260426e3d8
update website links 4 months ago
Mikael Finstad 260301c920
improve doc #2699 5 months ago
Mikael Finstad 260107c27a
update urls 7 months ago
Mikael Finstad 260107c3c2
improve docs 7 months ago
Mikael Finstad 260107c96e
Introduce template variable `FILES`
...for all templates.
It is a list of SourceFile objects.

```ts
interface SourceFile {
  name: string, // The file's name without the file system path
  path: string, // The full filesystem path of the file
  size?: number | bigint, // File size in bytes
  // All times are expressed in milliseconds since the POSIX Epoch:
  atime?: number, // The timestamp indicating the last time this file was accessed.
  mtime?: number, // The timestamp indicating the last time this file was modified.
  ctime?: number, // The timestamp indicating the last time the file status was changed.
  birthtime?: number, // The timestamp indicating the creation time of this file.
}
```

closes #2694

also refactor a bit
7 months ago