replace coastalcommits with c.csw.im
All checks were successful
Actions / Build and Push Documentation (push) Successful in 16s
All checks were successful
Actions / Build and Push Documentation (push) Successful in 16s
This commit is contained in:
parent
6f0bc97a69
commit
fe52f4935f
3 changed files with 15 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -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`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
19
typedoc.json
19
typedoc.json
|
@ -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
|
||||
}
|
||||
|
|
Reference in a new issue