@bonniernews/dn-design-system-web 21.1.4 → 21.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ const version = '${version}';
2
+ const packageName = process.env.npm_package_name;
3
+
4
+ module.exports = {
5
+ plugins: {
6
+ '@release-it/conventional-changelog': {
7
+ path: '.',
8
+ infile: false, // Disable changelog writes on beta releases
9
+ },
10
+ },
11
+ git: {
12
+ push: true,
13
+ tagName: `@bonniernews/dn-design-system-web@${version}`,
14
+ commitsPath: '.',
15
+ commitMessage: `chore(web): released version v${version}`,
16
+ requireCommits: false
17
+ },
18
+ github: {
19
+ "tokenRef": "GITHUB_TOKEN"
20
+ },
21
+ npm: {
22
+ publish: false,
23
+ versionArgs: ['--workspaces false'],
24
+ }
25
+ };
package/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
4
4
 
5
5
 
6
6
 
7
+ ## [21.1.5](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@21.1.4...@bonniernews/dn-design-system-web@21.1.5) (2024-11-15)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **web:** release it no changelog for beta ([#1504](https://github.com/BonnierNews/dn-design-system/issues/1504)) ([8882d95](https://github.com/BonnierNews/dn-design-system/commit/8882d95e16fa43fe91d05c2dc2b35529992a63df))
13
+
7
14
  ## [21.1.4](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@21.1.3...@bonniernews/dn-design-system-web@21.1.4) (2024-11-15)
8
15
 
9
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "21.1.4",
3
+ "version": "21.1.5",
4
4
  "description": "DN design system for web.",
5
5
  "main": "index.tsx",
6
6
  "type": "module",
@@ -73,6 +73,6 @@
73
73
  "scripts": {
74
74
  "lint:styles": "yarn stylelint \"**/*.scss\" \"!node_modules/\"",
75
75
  "release:web": "release-it --ci --vv",
76
- "prerelease:web": "release-it --preRelease=beta --ci --vv"
76
+ "prerelease:web": "release-it --preRelease=beta --ci --vv --config .release-it-beta.cjs"
77
77
  }
78
78
  }