coh-content-db-homecoming 2.0.0-rc.3 → 2.0.0-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +11 -11
- package/CHANGELOG.md +24 -0
- package/README.md +2 -1
- package/dist/bundle.head.json +1 -0
- package/dist/bundle.json +1 -1
- package/dist/coh-content-db-homecoming.d.ts +2 -2
- package/dist/coh-content-db-homecoming.js +18 -17
- package/dist/coh-content-db-homecoming.js.map +1 -1
- package/dist/coh-content-db-homecoming.mjs +18 -17
- package/dist/coh-content-db-homecoming.mjs.map +1 -1
- package/package.json +3 -2
- package/rollup.config.mjs +9 -1
- package/src/main/lint/eslint-local.config.js +1 -0
- package/src/main/lint/rules/no-neg-zero.ts +36 -0
- package/src/main/lint/rules.ts +2 -0
- package/src/main/lint/utils/bundle-version.ts +3 -0
- package/src/main/ts/contact/pay-phone.ts +1 -1
- package/src/main/ts/homecoming.ts +13 -10
- package/src/test/lint/rules/no-neg-zero.test.ts +35 -0
- package/src/test/ts/badge-fields.test.ts +8 -7
- package/src/test/ts/badge-markdown-fields.test.ts +8 -6
- package/src/test/ts/badge-requirements.test.ts +6 -5
- package/src/test/ts/homecoming.test.ts +20 -2
- package/src/test/ts/link-tests.test.ts +15 -14
- package/tsconfig.json +2 -1
- package/src/main/ts/changelog.ts +0 -17
|
@@ -18528,7 +18528,7 @@ const PayPhone = {
|
|
|
18528
18528
|
name: "Pay Phone",
|
|
18529
18529
|
title: "Outdated Tech",
|
|
18530
18530
|
morality: "primal",
|
|
18531
|
-
location: { zoneKey: RiktiWarZone.key, coords: [3229.5,
|
|
18531
|
+
location: { zoneKey: RiktiWarZone.key, coords: [3229.5, 0, -513] },
|
|
18532
18532
|
levelRange: [40, 50],
|
|
18533
18533
|
links: [{ title: "Pay Phone", href: "https://homecoming.wiki/wiki/Pay_Phone" }]
|
|
18534
18534
|
};
|
|
@@ -41023,14 +41023,6 @@ const BADGES = [
|
|
|
41023
41023
|
...AE_BADGES
|
|
41024
41024
|
];
|
|
41025
41025
|
|
|
41026
|
-
const CHANGELOG = [
|
|
41027
|
-
{
|
|
41028
|
-
version: "2.0.0",
|
|
41029
|
-
date: /* @__PURE__ */ new Date("2025-03-12"),
|
|
41030
|
-
description: "* Updated to [coh-content-db:2.0.0](https://github.com/n15g/coh-content-db).\n* Added Mission and Contact data.\n* Bundle data now available as JSON export.\n* Change from GNU to The Unlicense.\n* Moved from webpack to rollup for packaging.\n* Add eslint for linting.\n* Add jest for unit tests.\n* Added GitHub Actions for CI.\n"
|
|
41031
|
-
}
|
|
41032
|
-
];
|
|
41033
|
-
|
|
41034
41026
|
const CONTACTS = [
|
|
41035
41027
|
AaronThiery,
|
|
41036
41028
|
AaronWalker,
|
|
@@ -41541,14 +41533,24 @@ const MISSIONS = [
|
|
|
41541
41533
|
YouCantGoHome
|
|
41542
41534
|
];
|
|
41543
41535
|
|
|
41536
|
+
var version = "2.0.0-rc.5";
|
|
41537
|
+
var pkg = {
|
|
41538
|
+
version: version};
|
|
41539
|
+
|
|
41540
|
+
const BUNDLE_VERSION = pkg.version;
|
|
41541
|
+
|
|
41544
41542
|
const HOMECOMING = {
|
|
41545
|
-
|
|
41546
|
-
|
|
41547
|
-
|
|
41548
|
-
|
|
41549
|
-
|
|
41543
|
+
header: {
|
|
41544
|
+
name: "Homecoming",
|
|
41545
|
+
description: "Content data for the CoH: Homecoming server.",
|
|
41546
|
+
repositoryUrl: "https://github.com/n15g/coh-content-db-homecoming",
|
|
41547
|
+
changelogUrl: "https://github.com/n15g/coh-content-db-homecoming/blob/master/CHANGELOG.md",
|
|
41548
|
+
links: [
|
|
41549
|
+
{ title: "Homecoming Forums", href: "https://forums.homecomingservers.com/" }
|
|
41550
|
+
],
|
|
41551
|
+
version: BUNDLE_VERSION
|
|
41552
|
+
},
|
|
41550
41553
|
servers: ["Everlasting", "Excelsior", "Indomitable", "Reunion", "Torchbearer", "Victory"],
|
|
41551
|
-
repository: "https://github.com/n15g/coh-content-db-homecoming",
|
|
41552
41554
|
archetypes: [
|
|
41553
41555
|
{ key: "arachnos-soldier", name: "Arachnos Soldier" },
|
|
41554
41556
|
{ key: "arachnos-widow", name: "Arachnos Widow" },
|
|
@@ -41569,8 +41571,7 @@ const HOMECOMING = {
|
|
|
41569
41571
|
zones: [...ZONES],
|
|
41570
41572
|
contacts: [...CONTACTS],
|
|
41571
41573
|
missions: [...MISSIONS],
|
|
41572
|
-
badges: [...BADGES]
|
|
41573
|
-
changelog: CHANGELOG
|
|
41574
|
+
badges: [...BADGES]
|
|
41574
41575
|
};
|
|
41575
41576
|
|
|
41576
41577
|
export { HOMECOMING };
|