solid-grinder 1.1.8

A CLI that goes along with building blocks of smart contract. Along with our front-end snippets, this toolbox can reduce L2 gas cost by encoding calldata for dApps development to use as little bytes of calldata as possible.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const { coerce, inc, rsort } = require('semver');
const { join } = require('path');
const { version } = require(join(__dirname, '../../../package.json'));

module.exports = async ({ core }) => {
  // Variables not in the context
  const refName = process.env.GITHUB_REF_NAME;

  // Compare package.json version's next patch vs. first version patch
  // A recently opened branch will give the next patch for the previous minor
  // So, we get the max against the patch 0 of the release branch's version
  const branchPatch0 = coerce(refName.replace('release-v', '')).version;
  const packageJsonNextPatch = inc(version, 'patch');
  const [nextVersion] = rsort([branchPatch0, packageJsonNextPatch], false);

  core.exportVariable('TITLE', `Release v${nextVersion}`);
};