replace coastalcommits with c.csw.im
All checks were successful
Actions / Build and Push Documentation (push) Successful in 16s

This commit is contained in:
cswimr 2025-02-09 15:14:11 -06:00
parent 6f0bc97a69
commit fe52f4935f
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 15 additions and 8 deletions

View file

@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Set environment variables
uses: https://www.coastalcommits.com/actions/env@1791216cd180e6578dd1d67fb8d2852b883a5f53 # v2
uses: https://c.csw.im/actions/env@1791216cd180e6578dd1d67fb8d2852b883a5f53 # v2
- name: Build Documentation
run: |
if [ "$CI_ACTION_REF_NAME_SLUG" != "main" ]; then

View file

@ -178,7 +178,7 @@ export class Packwiz {
throw new Error("Unable to parse pack format!");
} else if (semver.gt(packFormatSemver, packwizJsMaxSupportedVersion)) {
throw new Error(
`Pack format of ${packFormat} is higher than what PackwizJS supports! Please report this upstream at https://www.coastalcommits.com/GalacticFactory/PackwizJS/issues`,
`Pack format of ${packFormat} is higher than what PackwizJS supports! Please report this upstream at https://c.csw.im/GalacticFactory/PackwizJS/issues`,
);
}
}

View file

@ -1,5 +1,7 @@
{
"entryPoints": ["src/**/*.ts"],
"entryPoints": [
"src/**/*.ts"
],
"outputs": [
{
"name": "html",
@ -15,16 +17,21 @@
}
],
"githubPages": false,
"exclude": ["**/*+(test|spec).ts"],
"exclude": [
"**/*+(test|spec).ts"
],
"theme": "default-modern",
"dmtFavicon": "https://www.coastalcommits.com/favicon.ico",
"dmtFavicon": "https://csw.im/favicon.ico",
"dmtLinksIcon": [
{
"icon": "https://www.coastalcommits.com/favicon.ico",
"icon": "https://c.csw.im/favicon.ico",
"title": "CoastalCommits",
"url": "https://www.coastalcommits.com/GalacticFactory/PackwizJS"
"url": "https://c.csw.im/GalacticFactory/PackwizJS"
}
],
"plugin": ["typedoc-plugin-coverage", "@typhonjs-typedoc/typedoc-theme-dmt"],
"plugin": [
"typedoc-plugin-coverage",
"@typhonjs-typedoc/typedoc-theme-dmt"
],
"categorizeByGroup": true
}