forked from intuit/auto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto-update-curl-version.js
40 lines (34 loc) · 1.03 KB
/
auto-update-curl-version.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* eslint-disable jsdoc/no-types, @typescript-eslint/no-var-requires */
const fs = require("fs");
const path = require("path");
const { inc } = require("semver");
const { execSync } = require("child_process");
const filename = path.join(
__dirname,
"../docs/pages/docs/configuration/non-npm.mdx"
);
module.exports = class TestPlugin {
/** Initialize */
constructor() {
this.name = "update-curl-version";
}
/**
* Tap into auto plugin points.
*
* @param {import('@auto-it/core').default} auto - An instance of auto
*/
apply(auto) {
auto.hooks.beforeCommitChangelog.tap(this.name, ({ lastRelease, bump }) => {
const nonNpmDocs = fs.readFileSync(filename, { encoding: "utf8" });
fs.writeFileSync(
filename,
nonNpmDocs.replace(
/(download\/v)(\d+\.\d+\.\d+)(\/auto-linux\.gz)/,
`$1${inc(lastRelease, bump)}$3`
)
);
// Add the file so that when the changelog is committed this docs update is included
execSync(`git add ${filename}`);
});
}
};