Merge branch 'update-tooling' into 'master'

Upgrade tooling

See merge request ghost/risk-dice-modifier!3
This commit is contained in:
Johannes Loher 2021-05-23 00:55:15 +00:00
commit 043b5c6792
8 changed files with 177 additions and 173 deletions

View file

@ -17,4 +17,13 @@ module.exports = {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
// e.g. "@typescript-eslint/explicit-function-return-type": "off", // e.g. "@typescript-eslint/explicit-function-return-type": "off",
}, },
overrides: [
{
files: ['./*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off',
},
},
],
}; };

View file

@ -46,9 +46,9 @@ build:
cache: cache:
<<: *global_cache <<: *global_cache
script: | script: |
yarn updateManifest -- --update=${RELEASE_TYPE} yarn bump-version --release=${RELEASE_TYPE}
RELEASE_VERSION=$(jq -r '.version' < package.json) RELEASE_VERSION=$(jq -r '.version' < package.json)
git add package.json package-lock.json src/module.json git add package.json src/module.json
git --no-pager diff git --no-pager diff
git commit -m "release version ${RELEASE_VERSION}" git commit -m "release version ${RELEASE_VERSION}"
git tag -f latest git tag -f latest

View file

@ -3,7 +3,6 @@
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
"esbenp.prettier-vscode", "esbenp.prettier-vscode",
"gruntfuggly.todo-tree", "gruntfuggly.todo-tree",
"eg2.vscode-npm-script",
"msjsdiag.debugger-for-chrome", "msjsdiag.debugger-for-chrome",
"arcanis.vscode-zipfs" "arcanis.vscode-zipfs"
] ]

View file

@ -68,7 +68,7 @@ the following content:
``` ```
{ {
"dataPath": "<path to your home directory>/.local/share/FoundryVTT" "dataPath": "<path to your home directory>/.local/share/FoundryVTT/Data"
} }
``` ```

View file

@ -1,41 +1,32 @@
const gulp = require('gulp');
const fs = require('fs-extra');
const path = require('path');
const chalk = require('chalk');
const stringify = require('json-stringify-pretty-compact');
const argv = require('yargs').argv;
const { rollup } = require('rollup'); const { rollup } = require('rollup');
const argv = require('yargs').argv;
const chalk = require('chalk');
const fs = require('fs-extra');
const gulp = require('gulp');
const path = require('path');
const rollupConfig = require('./rollup.config'); const rollupConfig = require('./rollup.config');
const semver = require('semver');
function getManifest() { /********************/
const json = {}; /* CONFIGURATION */
/********************/
if (fs.existsSync('src')) { const name = path.basename(path.resolve('.'));
json.root = 'src'; const sourceDirectory = './src';
} else { const distDirectory = './dist';
json.root = 'dist'; const sourceFileExtension = '.ts';
} const staticFiles = ['module.json'];
const getDownloadURL = (version) =>
const modulePath = path.join(json.root, 'module.json'); `https://git.f3l.de/ghost/risk-dice-modifier/-/jobs/artifacts/${version}/download?job=build`;
if (fs.existsSync(modulePath)) {
json.file = fs.readJSONSync(modulePath);
json.name = 'module.json';
} else {
return;
}
return json;
}
/********************/ /********************/
/* BUILD */ /* BUILD */
/********************/ /********************/
/** /**
* Build TypeScript * Build the distributable JavaScript code
*/ */
async function buildTS() { async function buildCode() {
const build = await rollup({ input: rollupConfig.input, plugins: rollupConfig.plugins }); const build = await rollup({ input: rollupConfig.input, plugins: rollupConfig.plugins });
return build.write(rollupConfig.output); return build.write(rollupConfig.output);
} }
@ -44,25 +35,27 @@ async function buildTS() {
* Copy static files * Copy static files
*/ */
async function copyFiles() { async function copyFiles() {
const statics = ['module.json']; for (const file of staticFiles) {
try { if (fs.existsSync(path.join(sourceDirectory, file))) {
for (const file of statics) { await fs.copy(path.join(sourceDirectory, file), path.join(distDirectory, file));
if (fs.existsSync(path.join('src', file))) {
await fs.copy(path.join('src', file), path.join('dist', file));
} }
} }
return Promise.resolve();
} catch (err) {
Promise.reject(err);
}
} }
/** /**
* Watch for changes for each build step * Watch for changes for each build step
*/ */
function buildWatch() { function buildWatch() {
gulp.watch('src/**/*.ts', { ignoreInitial: false }, buildTS); gulp.watch(
gulp.watch(['src/*.json'], { ignoreInitial: false }, copyFiles); path.join(sourceDirectory, '**', `*${sourceFileExtension}`).replace(/\\/g, '/'),
{ ignoreInitial: false },
buildCode,
);
gulp.watch(
staticFiles.map((file) => path.join(sourceDirectory, file).replace(/\\/g, '/')),
{ ignoreInitial: false },
copyFiles,
);
} }
/********************/ /********************/
@ -70,29 +63,16 @@ function buildWatch() {
/********************/ /********************/
/** /**
* Remove built files from `dist` folder * Remove built files from `dist` folder while ignoring source files
* while ignoring source files
*/ */
async function clean() { async function clean() {
const name = path.basename(path.resolve('.')); const files = [...staticFiles, 'module'];
const files = [];
// If the project uses TypeScript
if (fs.existsSync(path.join('src', 'module', `${name}.ts`))) {
files.push('module', `${name}.js`, 'module.json');
}
console.log(' ', chalk.yellow('Files to clean:')); console.log(' ', chalk.yellow('Files to clean:'));
console.log(' ', chalk.blueBright(files.join('\n '))); console.log(' ', chalk.blueBright(files.join('\n ')));
// Attempt to remove the files
try {
for (const filePath of files) { for (const filePath of files) {
await fs.remove(path.join('dist', filePath)); await fs.remove(path.join(distDirectory, filePath));
}
return Promise.resolve();
} catch (err) {
Promise.reject(err);
} }
} }
@ -100,119 +80,112 @@ async function clean() {
/* LINK */ /* LINK */
/********************/ /********************/
/**
* Get the data path of Foundry VTT based on what is configured in `foundryconfig.json`
*/
function getDataPath() {
const config = fs.readJSONSync('foundryconfig.json');
if (config?.dataPath) {
if (!fs.existsSync(path.resolve(config.dataPath))) {
throw new Error('User Data path invalid, no Data directory found');
}
return path.resolve(config.dataPath);
} else {
throw new Error('No User Data path defined in foundryconfig.json');
}
}
/** /**
* Link build to User Data folder * Link build to User Data folder
*/ */
async function linkUserData() { async function linkUserData() {
const name = path.basename(path.resolve('.')); let destinationDirectory;
const config = fs.readJSONSync('foundryconfig.json'); if (fs.existsSync(path.resolve('.', sourceDirectory, 'module.json'))) {
destinationDirectory = 'modules';
let destDir;
try {
if (
fs.existsSync(path.resolve('.', 'dist', 'module.json')) ||
fs.existsSync(path.resolve('.', 'src', 'module.json'))
) {
destDir = 'modules';
} else { } else {
throw Error(`Could not find ${chalk.blueBright('module.json')}`); throw new Error(`Could not find ${chalk.blueBright('module.json')}`);
} }
let linkDir; const linkDirectory = path.resolve(getDataPath(), destinationDirectory, name);
if (config.dataPath) {
if (!fs.existsSync(path.join(config.dataPath, 'Data')))
throw Error('User Data path invalid, no Data directory found');
linkDir = path.join(config.dataPath, 'Data', destDir, name);
} else {
throw Error('No User Data path defined in foundryconfig.json');
}
if (argv.clean || argv.c) { if (argv.clean || argv.c) {
console.log(chalk.yellow(`Removing build in ${chalk.blueBright(linkDir)}`)); console.log(chalk.yellow(`Removing build in ${chalk.blueBright(linkDirectory)}.`));
await fs.remove(linkDir); await fs.remove(linkDirectory);
} else if (!fs.existsSync(linkDir)) { } else if (!fs.existsSync(linkDirectory)) {
console.log(chalk.green(`Copying build to ${chalk.blueBright(linkDir)}`)); console.log(chalk.green(`Copying build to ${chalk.blueBright(linkDirectory)}.`));
await fs.symlink(path.resolve('./dist'), linkDir); await fs.ensureDir(path.resolve(linkDirectory, '..'));
} await fs.symlink(path.resolve('.', distDirectory), linkDirectory);
return Promise.resolve();
} catch (err) {
Promise.reject(err);
} }
} }
/*********************/ /********************/
/* PACKAGE */ /* VERSIONING */
/*********************/ /********************/
/** /**
* Update version and URLs in the manifest JSON * Get the contents of the manifest file as object.
*/ */
function updateManifest(cb) { function getManifest() {
const manifestPath = path.join(sourceDirectory, 'module.json');
if (fs.existsSync(manifestPath)) {
return {
file: fs.readJSONSync(manifestPath),
name: 'module.json',
};
}
}
/**
* Get the target version based on on the current version and the argument passed as release.
*/
function getTargetVersion(currentVersion, release) {
if (['major', 'premajor', 'minor', 'preminor', 'patch', 'prepatch', 'prerelease'].includes(release)) {
return semver.inc(currentVersion, release);
} else {
return semver.valid(release);
}
}
/**
* Update version and download URL.
*/
function bumpVersion(cb) {
const packageJson = fs.readJSONSync('package.json'); const packageJson = fs.readJSONSync('package.json');
const packageLockJson = fs.readJSONSync('package-lock.json');
const manifest = getManifest(); const manifest = getManifest();
if (!manifest) cb(Error(chalk.red('Manifest JSON not found'))); if (!manifest) cb(Error(chalk.red('Manifest JSON not found')));
try { try {
const version = argv.update || argv.u; const release = argv.release || argv.r;
/* Update version */ const currentVersion = packageJson.version;
const versionMatch = /^(\d{1,}).(\d{1,}).(\d{1,})$/; if (!release) {
const currentVersion = manifest.file.version; return cb(Error('Missing release type'));
let targetVersion = '';
if (!version) {
cb(Error('Missing version number'));
} }
if (versionMatch.test(version)) { const targetVersion = getTargetVersion(currentVersion, release);
targetVersion = version;
} else {
targetVersion = currentVersion.replace(versionMatch, (substring, major, minor, patch) => {
console.log(substring, Number(major) + 1, Number(minor) + 1, Number(patch) + 1);
if (version === 'major') {
return `${Number(major) + 1}.0.0`;
} else if (version === 'minor') {
return `${major}.${Number(minor) + 1}.0`;
} else if (version === 'patch') {
return `${major}.${minor}.${Number(patch) + 1}`;
} else {
return '';
}
});
}
if (targetVersion === '') { if (!targetVersion) {
return cb(Error(chalk.red('Error: Incorrect version arguments.'))); return cb(new Error(chalk.red('Error: Incorrect version arguments')));
} }
if (targetVersion === currentVersion) { if (targetVersion === currentVersion) {
return cb(Error(chalk.red('Error: Target version is identical to current version.'))); return cb(new Error(chalk.red('Error: Target version is identical to current version')));
} }
console.log(`Updating version number to '${targetVersion}'`); console.log(`Updating version number to '${targetVersion}'`);
packageJson.version = targetVersion; packageJson.version = targetVersion;
packageLockJson.version = targetVersion;
manifest.file.version = targetVersion;
/* Update URL */
const result = `https://git.f3l.de/ghost/${packageJson.name}/-/jobs/artifacts/${targetVersion}/download?job=build`;
manifest.file.download = result;
const prettyProjectJson =
stringify(manifest.file, {
maxLength: 40,
indent: 4,
}) + '\n';
fs.writeJSONSync('package.json', packageJson, { spaces: 4 }); fs.writeJSONSync('package.json', packageJson, { spaces: 4 });
fs.writeJSONSync('package-lock.json', packageLockJson, { spaces: 4 });
fs.writeFileSync(path.join(manifest.root, manifest.name), prettyProjectJson, 'utf8'); manifest.file.version = targetVersion;
manifest.file.download = getDownloadURL(targetVersion);
fs.writeJSONSync(path.join(sourceDirectory, manifest.name), manifest.file, { spaces: 4 });
return cb(); return cb();
} catch (err) { } catch (err) {
@ -220,10 +193,10 @@ function updateManifest(cb) {
} }
} }
const execBuild = gulp.parallel(buildTS, copyFiles); const execBuild = gulp.parallel(buildCode, copyFiles);
exports.build = gulp.series(clean, execBuild); exports.build = gulp.series(clean, execBuild);
exports.watch = buildWatch; exports.watch = buildWatch;
exports.clean = clean; exports.clean = clean;
exports.link = linkUserData; exports.link = linkUserData;
exports.updateManifest = updateManifest; exports.bumpVersion = bumpVersion;

View file

@ -21,16 +21,17 @@
"scripts": { "scripts": {
"build": "gulp build", "build": "gulp build",
"build:watch": "gulp watch", "build:watch": "gulp watch",
"link": "gulp link", "link-project": "gulp link",
"clean": "gulp clean && gulp link --clean", "clean": "gulp clean",
"update": "yarn add --dev foundry-vtt-types@github:League-of-Foundry-Developers/foundry-vtt-types#foundry-0.7.9", "clean:link": "gulp link --clean",
"updateManifest": "gulp updateManifest", "bump-version": "gulp bumpVersion",
"lint": "eslint 'src/**/*.ts' --cache", "lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint 'src/**/*.ts' --cache --fix", "lint:fix": "eslint --ext .ts,.js --fix .",
"format": "prettier --write 'src/**/*.(ts|json)'", "format": "prettier --write \"./**/*.(ts|js|json)\"",
"postinstall": "husky install" "postinstall": "husky install"
}, },
"devDependencies": { "devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^0.7.9-6",
"@rollup/plugin-node-resolve": "^13.0.0", "@rollup/plugin-node-resolve": "^13.0.0",
"@types/fs-extra": "^9.0.11", "@types/fs-extra": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^4.24.0", "@typescript-eslint/eslint-plugin": "^4.24.0",
@ -39,7 +40,6 @@
"eslint": "^7.27.0", "eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0", "eslint-plugin-prettier": "^3.4.0",
"foundry-vtt-types": "github:League-of-Foundry-Developers/foundry-vtt-types#foundry-0.7.9",
"fs-extra": "^10.0.0", "fs-extra": "^10.0.0",
"gulp": "^4.0.2", "gulp": "^4.0.2",
"husky": "^6.0.0", "husky": "^6.0.0",
@ -48,12 +48,13 @@
"prettier": "^2.3.0", "prettier": "^2.3.0",
"rollup": "^2.48.0", "rollup": "^2.48.0",
"rollup-plugin-typescript2": "^0.30.0", "rollup-plugin-typescript2": "^0.30.0",
"semver": "^7.3.5",
"tslib": "^2.2.0", "tslib": "^2.2.0",
"typescript": "^4.2.4", "typescript": "^4.2.4",
"yargs": "^17.0.1" "yargs": "^17.0.1"
}, },
"lint-staged": { "lint-staged": {
"*.ts": "eslint --cache --fix", "*.(ts|js)": "eslint --fix",
"*.json": "prettier --write" "*.json": "prettier --write"
} }
} }

View file

@ -2,7 +2,7 @@
"compilerOptions": { "compilerOptions": {
"target": "ES2020", "target": "ES2020",
"lib": ["DOM", "ES2020"], "lib": ["DOM", "ES2020"],
"types": ["foundry-vtt-types"], "types": ["@league-of-foundry-developers/foundry-vtt-types"],
"esModuleInterop": true, "esModuleInterop": true,
"moduleResolution": "node", "moduleResolution": "node",
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,

View file

@ -58,6 +58,22 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@league-of-foundry-developers/foundry-vtt-types@npm:^0.7.9-6":
version: 0.7.9-6
resolution: "@league-of-foundry-developers/foundry-vtt-types@npm:0.7.9-6"
dependencies:
"@types/howler": 2.2.1
"@types/jquery": 3.5.1
"@types/socket.io-client": ^1.4.33
handlebars: 4.7.6
pixi-particles: ^4.3.0
pixi.js: 5.3.4
tinymce: 5.6.2
typescript: ^4.1.4
checksum: ea8783a4da939db6d51e12a6cb343e53cb6df747ccf8d823063066322c707c98c0fffd2559efc0e0e8fec47b08528f5920be3ac9cd4708c673d947f0e8898e6e
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.4": "@nodelib/fs.scandir@npm:2.1.4":
version: 2.1.4 version: 2.1.4
resolution: "@nodelib/fs.scandir@npm:2.1.4" resolution: "@nodelib/fs.scandir@npm:2.1.4"
@ -2429,21 +2445,6 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"foundry-vtt-types@github:League-of-Foundry-Developers/foundry-vtt-types#foundry-0.7.9":
version: 0.1.0
resolution: "foundry-vtt-types@https://github.com/League-of-Foundry-Developers/foundry-vtt-types.git#commit=de66d24eb891c97923db47eb1a819eec2a298f02"
dependencies:
"@types/howler": 2.2.1
"@types/jquery": 3.5.1
"@types/socket.io-client": ^1.4.33
handlebars: 4.7.6
pixi.js: 5.3.4
tinymce: 5.6.2
typescript: ^4.1.4
checksum: fb6065ce7ed2c969ee421abd3d259f264ed707fabfce01f27d59707338a9ca6854233c0cb8b91ef2310af22a7f7ee95b3e5080d0d2c6662e9b31ed3a5d10ba17
languageName: node
linkType: hard
"fragment-cache@npm:^0.2.1": "fragment-cache@npm:^0.2.1":
version: 0.2.1 version: 0.2.1
resolution: "fragment-cache@npm:0.2.1" resolution: "fragment-cache@npm:0.2.1"
@ -4437,6 +4438,15 @@ fsevents@~2.3.1:
languageName: node languageName: node
linkType: hard linkType: hard
"pixi-particles@npm:^4.3.0":
version: 4.3.0
resolution: "pixi-particles@npm:4.3.0"
peerDependencies:
pixi.js: ">=4.0.0"
checksum: 66da332ae33a236afb5a5b2ebeea0308314423bab1017851be860a0904aed91cb5f345ea488c75a6efdfa6e42096ba7762472f8573590b924b93cae293b8b6d9
languageName: node
linkType: hard
"pixi.js@npm:5.3.4": "pixi.js@npm:5.3.4":
version: 5.3.4 version: 5.3.4
resolution: "pixi.js@npm:5.3.4" resolution: "pixi.js@npm:5.3.4"
@ -4897,6 +4907,7 @@ fsevents@~2.3.1:
version: 0.0.0-use.local version: 0.0.0-use.local
resolution: "risk-dice-modifier@workspace:." resolution: "risk-dice-modifier@workspace:."
dependencies: dependencies:
"@league-of-foundry-developers/foundry-vtt-types": ^0.7.9-6
"@rollup/plugin-node-resolve": ^13.0.0 "@rollup/plugin-node-resolve": ^13.0.0
"@types/fs-extra": ^9.0.11 "@types/fs-extra": ^9.0.11
"@typescript-eslint/eslint-plugin": ^4.24.0 "@typescript-eslint/eslint-plugin": ^4.24.0
@ -4905,7 +4916,6 @@ fsevents@~2.3.1:
eslint: ^7.27.0 eslint: ^7.27.0
eslint-config-prettier: ^8.3.0 eslint-config-prettier: ^8.3.0
eslint-plugin-prettier: ^3.4.0 eslint-plugin-prettier: ^3.4.0
foundry-vtt-types: "github:League-of-Foundry-Developers/foundry-vtt-types#foundry-0.7.9"
fs-extra: ^10.0.0 fs-extra: ^10.0.0
gulp: ^4.0.2 gulp: ^4.0.2
husky: ^6.0.0 husky: ^6.0.0
@ -4914,6 +4924,7 @@ fsevents@~2.3.1:
prettier: ^2.3.0 prettier: ^2.3.0
rollup: ^2.48.0 rollup: ^2.48.0
rollup-plugin-typescript2: ^0.30.0 rollup-plugin-typescript2: ^0.30.0
semver: ^7.3.5
tslib: ^2.2.0 tslib: ^2.2.0
typescript: ^4.2.4 typescript: ^4.2.4
yargs: ^17.0.1 yargs: ^17.0.1
@ -5043,6 +5054,17 @@ fsevents@~2.3.1:
languageName: node languageName: node
linkType: hard linkType: hard
"semver@npm:^7.3.5":
version: 7.3.5
resolution: "semver@npm:7.3.5"
dependencies:
lru-cache: ^6.0.0
bin:
semver: bin/semver.js
checksum: c53624ddf4b9779bcbf55a1eb8b37074cc44bfeca416f3cc263429408202a8a3c59b00eef8c647d697303bc39b95c022a5c61959221d3814bfb1270ff7c14986
languageName: node
linkType: hard
"set-blocking@npm:^2.0.0, set-blocking@npm:~2.0.0": "set-blocking@npm:^2.0.0, set-blocking@npm:~2.0.0":
version: 2.0.0 version: 2.0.0
resolution: "set-blocking@npm:2.0.0" resolution: "set-blocking@npm:2.0.0"