Compare commits
9 commits
Author | SHA1 | Date | |
---|---|---|---|
|
6ccdc27019 | ||
|
5fb799273c | ||
|
fff74d555d | ||
|
793beea213 | ||
|
80fdfe6fd0 | ||
|
40e9601763 | ||
|
eff24472b7 | ||
|
4c53f1a9c5 | ||
|
1858c44d24 |
4 changed files with 506 additions and 433 deletions
12
package.json
12
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.5",
|
||||
"version": "1.12.6",
|
||||
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
|
||||
"homepage": "https://git.f3l.de/dungeonslayers/ds4",
|
||||
"repository": {
|
||||
|
@ -66,23 +66,23 @@
|
|||
"@seald-io/nedb": "2.2.1",
|
||||
"@types/fs-extra": "9.0.13",
|
||||
"@types/jest": "27.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.10.2",
|
||||
"@typescript-eslint/parser": "5.10.2",
|
||||
"@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.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.7",
|
||||
|
|
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.5",
|
||||
"version": "1.12.5",
|
||||
"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.5/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 });
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue