-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbeachball.config.js
34 lines (34 loc) · 1 KB
/
beachball.config.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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
// @ts-check
/** @type {import("beachball").BeachballConfig } */
module.exports = {
bumpDeps: false,
access: "public",
tag: "latest",
scope: [
"packages/**"
],
ignorePatterns: [
".nycrc",
".eslintrc.json",
".mocharc.json",
"tsconfig.*",
".*ignore",
".github/**",
".vscode/**",
"**/test/**",
"pnpm-lock.yaml",
],
changehint: "Run 'pnpm change' to generate a change file",
changelog: {
customRenderers: {
renderEntry: (entry) => {
const commitLink = `https://github.com/iTwin/imodel-transformer/commit/${entry.commit}`;
return `- ${entry.comment} ([commit](${commitLink}))`;
},
},
},
};