coh-content-db-homecoming 2.0.0-rc.4 → 2.0.0-rc.6
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 +1 -0
- 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
|
@@ -18530,7 +18530,7 @@ const PayPhone = {
|
|
|
18530
18530
|
name: "Pay Phone",
|
|
18531
18531
|
title: "Outdated Tech",
|
|
18532
18532
|
morality: "primal",
|
|
18533
|
-
location: { zoneKey: RiktiWarZone.key, coords: [3229.5,
|
|
18533
|
+
location: { zoneKey: RiktiWarZone.key, coords: [3229.5, 0, -513] },
|
|
18534
18534
|
levelRange: [40, 50],
|
|
18535
18535
|
links: [{ title: "Pay Phone", href: "https://homecoming.wiki/wiki/Pay_Phone" }]
|
|
18536
18536
|
};
|
|
@@ -41025,14 +41025,6 @@ const BADGES = [
|
|
|
41025
41025
|
...AE_BADGES
|
|
41026
41026
|
];
|
|
41027
41027
|
|
|
41028
|
-
const CHANGELOG = [
|
|
41029
|
-
{
|
|
41030
|
-
version: "2.0.0",
|
|
41031
|
-
date: /* @__PURE__ */ new Date("2025-03-12"),
|
|
41032
|
-
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"
|
|
41033
|
-
}
|
|
41034
|
-
];
|
|
41035
|
-
|
|
41036
41028
|
const CONTACTS = [
|
|
41037
41029
|
AaronThiery,
|
|
41038
41030
|
AaronWalker,
|
|
@@ -41543,14 +41535,24 @@ const MISSIONS = [
|
|
|
41543
41535
|
YouCantGoHome
|
|
41544
41536
|
];
|
|
41545
41537
|
|
|
41538
|
+
var version = "2.0.0-rc.6";
|
|
41539
|
+
var pkg = {
|
|
41540
|
+
version: version};
|
|
41541
|
+
|
|
41542
|
+
const BUNDLE_VERSION = pkg.version;
|
|
41543
|
+
|
|
41546
41544
|
const HOMECOMING = {
|
|
41547
|
-
|
|
41548
|
-
|
|
41549
|
-
|
|
41550
|
-
|
|
41551
|
-
|
|
41545
|
+
header: {
|
|
41546
|
+
name: "Homecoming",
|
|
41547
|
+
description: "Content data for the CoH: Homecoming server.",
|
|
41548
|
+
repositoryUrl: "https://github.com/n15g/coh-content-db-homecoming",
|
|
41549
|
+
changelogUrl: "https://github.com/n15g/coh-content-db-homecoming/blob/master/CHANGELOG.md",
|
|
41550
|
+
links: [
|
|
41551
|
+
{ title: "Homecoming Forums", href: "https://forums.homecomingservers.com/" }
|
|
41552
|
+
],
|
|
41553
|
+
version: BUNDLE_VERSION
|
|
41554
|
+
},
|
|
41552
41555
|
servers: ["Everlasting", "Excelsior", "Indomitable", "Reunion", "Torchbearer", "Victory"],
|
|
41553
|
-
repository: "https://github.com/n15g/coh-content-db-homecoming",
|
|
41554
41556
|
archetypes: [
|
|
41555
41557
|
{ key: "arachnos-soldier", name: "Arachnos Soldier" },
|
|
41556
41558
|
{ key: "arachnos-widow", name: "Arachnos Widow" },
|
|
@@ -41571,8 +41573,7 @@ const HOMECOMING = {
|
|
|
41571
41573
|
zones: [...ZONES],
|
|
41572
41574
|
contacts: [...CONTACTS],
|
|
41573
41575
|
missions: [...MISSIONS],
|
|
41574
|
-
badges: [...BADGES]
|
|
41575
|
-
changelog: CHANGELOG
|
|
41576
|
+
badges: [...BADGES]
|
|
41576
41577
|
};
|
|
41577
41578
|
|
|
41578
41579
|
exports.HOMECOMING = HOMECOMING;
|