Compare commits
18 commits
Author | SHA1 | Date | |
---|---|---|---|
|
6ccdc27019 | ||
|
5fb799273c | ||
|
fff74d555d | ||
|
793beea213 | ||
|
80fdfe6fd0 | ||
|
40e9601763 | ||
|
eff24472b7 | ||
|
4c53f1a9c5 | ||
|
1858c44d24 | ||
|
e0498a45db | ||
|
f3eb17deef | ||
|
7ed993e04b | ||
|
2ba8f23b0d | ||
|
ccebb70e81 | ||
|
7a8e314b2f | ||
|
434a3cb8df | ||
|
99f42d6b88 | ||
|
dd9e30f8a1 |
6 changed files with 527 additions and 453 deletions
|
@ -169,6 +169,7 @@ publish-to-foundry-admin:
|
|||
variables:
|
||||
FVTT_MANIFEST_PATH: ds4/system.json
|
||||
FVTT_MANIFEST_URL: ${CI_PROJECT_URL}/-/releases/${CI_COMMIT_TAG}/downloads/system.json
|
||||
FVTT_DELETE_OBSOLETE_VERSIONS: "true"
|
||||
script: foundry-publish
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||
|
|
18
package.json
18
package.json
|
@ -2,7 +2,7 @@
|
|||
"private": true,
|
||||
"name": "dungeonslayers4",
|
||||
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
|
||||
"version": "1.12.4",
|
||||
"version": "1.12.6",
|
||||
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
|
||||
"homepage": "https://git.f3l.de/dungeonslayers/ds4",
|
||||
"repository": {
|
||||
|
@ -61,31 +61,31 @@
|
|||
"@commitlint/cli": "16.1.0",
|
||||
"@commitlint/config-conventional": "16.0.0",
|
||||
"@guanghechen/rollup-plugin-copy": "1.8.6",
|
||||
"@league-of-foundry-developers/foundry-vtt-types": "9.242.0",
|
||||
"@league-of-foundry-developers/foundry-vtt-types": "9.249.0",
|
||||
"@rollup/plugin-typescript": "8.3.0",
|
||||
"@seald-io/nedb": "2.2.1",
|
||||
"@types/fs-extra": "9.0.13",
|
||||
"@types/jest": "27.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.10.1",
|
||||
"@typescript-eslint/parser": "5.10.1",
|
||||
"@typescript-eslint/eslint-plugin": "5.11.0",
|
||||
"@typescript-eslint/parser": "5.11.0",
|
||||
"conventional-changelog-cli": "2.2.2",
|
||||
"conventional-changelog-conventionalcommits": "4.6.3",
|
||||
"eslint": "8.8.0",
|
||||
"eslint-config-prettier": "8.3.0",
|
||||
"eslint-plugin-jest": "26.0.0",
|
||||
"eslint-plugin-jest": "26.1.0",
|
||||
"eslint-plugin-prettier": "4.0.0",
|
||||
"fs-extra": "10.0.0",
|
||||
"husky": "7.0.4",
|
||||
"jest": "27.4.7",
|
||||
"jest": "27.5.1",
|
||||
"jest-junit": "13.0.0",
|
||||
"lint-staged": "12.3.2",
|
||||
"lint-staged": "12.3.3",
|
||||
"npm-run-all": "4.1.5",
|
||||
"prettier": "2.5.1",
|
||||
"rimraf": "3.0.2",
|
||||
"rollup": "2.66.1",
|
||||
"rollup": "2.67.2",
|
||||
"rollup-plugin-styles": "4.0.0",
|
||||
"rollup-plugin-terser": "7.0.2",
|
||||
"sass": "1.49.0",
|
||||
"sass": "1.49.7",
|
||||
"semver": "7.3.5",
|
||||
"ts-jest": "27.1.3",
|
||||
"tslib": "2.3.1",
|
||||
|
|
10
system.json
10
system.json
|
@ -29,11 +29,11 @@
|
|||
}
|
||||
],
|
||||
"url": "https://git.f3l.de/dungeonslayers/ds4",
|
||||
"license": "./LICENSE.md",
|
||||
"readme": "./README.md",
|
||||
"license": "https://git.f3l.de/dungeonslayers/ds4/-/raw/1.12.6/LICENSE.md",
|
||||
"readme": "https://git.f3l.de/dungeonslayers/ds4/-/raw/1.12.6/README.md",
|
||||
"bugs": "https://git.f3l.de/dungeonslayers/ds4/-/issues",
|
||||
"changelog": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.4",
|
||||
"version": "1.12.4",
|
||||
"changelog": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.6",
|
||||
"version": "1.12.6",
|
||||
"minimumCoreVersion": "9.238",
|
||||
"compatibleCoreVersion": "9",
|
||||
"esmodules": ["ds4.js"],
|
||||
|
@ -101,7 +101,7 @@
|
|||
}
|
||||
],
|
||||
"manifest": "https://git.f3l.de/api/v4/projects/dungeonslayers%2Fds4/packages/generic/ds4/latest/system.json",
|
||||
"download": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.4/downloads/ds4.zip",
|
||||
"download": "https://git.f3l.de/dungeonslayers/ds4/-/releases/1.12.6/downloads/ds4.zip",
|
||||
"initiative": "@combatValues.initiative.total",
|
||||
"gridDistance": 1,
|
||||
"gridUnits": "m",
|
||||
|
|
|
@ -7,8 +7,14 @@ import semver from "semver";
|
|||
import yargs from "yargs";
|
||||
import { hideBin } from "yargs/helpers";
|
||||
|
||||
const getDownloadURL = (version) => `https://git.f3l.de/dungeonslayers/ds4/-/releases/${version}/downloads/ds4.zip`;
|
||||
const getChangelogURL = (version) => `https://git.f3l.de/dungeonslayers/ds4/-/releases/${version}`;
|
||||
const repository = "dungeonslayers/ds4";
|
||||
const gitlabURL = "https://git.f3l.de";
|
||||
|
||||
const getLicenseURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/LICENSE.md`;
|
||||
const getReadmeURL = (version) => `${gitlabURL}/${repository}/-/raw/${version}/README.md`;
|
||||
const getChangelogURL = (version) => `${gitlabURL}/${repository}/-/releases/${version}`;
|
||||
const getDownloadURL = (version) => `${gitlabURL}/${repository}/-/releases/${version}/downloads/ds4.zip`;
|
||||
|
||||
const manifestPath = "./system.json";
|
||||
|
||||
/**
|
||||
|
@ -61,9 +67,11 @@ function bumpVersion(release) {
|
|||
console.log(`Bumping version number to '${targetVersion}'`);
|
||||
packageJson.version = targetVersion;
|
||||
fs.writeJSONSync("package.json", packageJson, { spaces: 4 });
|
||||
manifest.license = getLicenseURL(targetVersion);
|
||||
manifest.readme = getReadmeURL(targetVersion);
|
||||
manifest.changelog = getChangelogURL(targetVersion);
|
||||
manifest.version = targetVersion;
|
||||
manifest.download = getDownloadURL(targetVersion);
|
||||
manifest.changelog = getChangelogURL(targetVersion);
|
||||
fs.writeJSONSync(manifestPath, manifest, { spaces: 4 });
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import path from "node:path";
|
|||
import yargs from "yargs";
|
||||
import { hideBin } from "yargs/helpers";
|
||||
|
||||
import { destinationDirectory, distDirectory, foundryconfigFile, name, sourceDirectory } from "./const.js";
|
||||
import { destinationDirectory, distDirectory, foundryconfigFile, name } from "./const.js";
|
||||
|
||||
/**
|
||||
* Get the data path of Foundry VTT based on what is configured in the {@link foundryconfigFile}.
|
||||
|
@ -29,7 +29,7 @@ function getDataPath() {
|
|||
* @param {boolean} clean Whether to remove the link instead of creating it
|
||||
*/
|
||||
async function linkPackage(clean) {
|
||||
if (!fs.existsSync(path.resolve(sourceDirectory, "system.json"))) {
|
||||
if (!fs.existsSync(path.resolve("system.json"))) {
|
||||
throw new Error("Could not find system.json");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue