@bizon/semantic-release-config 1.2.0 → 2.0.0

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.
Files changed (2) hide show
  1. package/README.md +36 -0
  2. package/package.json +7 -8
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # semantic-release-config
2
+
3
+ [Semantic Release](https://github.com/semantic-release/semantic-release) configuration for Bizon repositories.
4
+
5
+ [![npm version](https://badgen.net/npm/v/@bizon/semantic-release-config)](https://www.npmjs.com/package/@bizon/semantic-release-config)
6
+ [![XO code style](https://badgen.net/badge/code%20style/XO/cyan)](https://github.com/xojs/xo)
7
+
8
+ [<img src="https://files.bizon.solutions/images/logo/bizon-horizontal.png" alt="Bizon" width="250"/>](https://www.bizon.solutions?utm_source=github&utm_medium=readme&utm_campaign=semantic-release-config)
9
+
10
+ ## CI
11
+
12
+ [![Tests](https://github.com/bizon/semantic-release-config/actions/workflows/tests.yml/badge.svg)](https://github.com/bizon/semantic-release-config/actions/workflows/tests.yml)
13
+ [![Release](https://github.com/bizon/semantic-release-config/actions/workflows/release.yml/badge.svg)](https://github.com/bizon/semantic-release-config/actions/workflows/release.yml)
14
+
15
+ ## Install
16
+
17
+ ```
18
+ $ yarn add --dev @bizon/semantic-release-config
19
+ ```
20
+
21
+ ## License
22
+
23
+ MIT © [Bizon](https://github.com/bizon)
24
+
25
+
26
+ ## Miscellaneous
27
+
28
+ ```
29
+ ╚⊙ ⊙╝
30
+ ╚═(███)═╝
31
+ ╚═(███)═╝
32
+ ╚═(███)═╝
33
+ ╚═(███)═╝
34
+ ╚═(███)═╝
35
+ ╚═(███)═╝
36
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizon/semantic-release-config",
3
- "version": "1.2.0",
3
+ "version": "2.0.0",
4
4
  "description": "Semantic Release configuration for Bizon repositories",
5
5
  "repository": "https://github.com/bizon/semantic-release",
6
6
  "author": "Bertrand Marron <bertrand.marron@gmail.com>",
@@ -10,7 +10,7 @@
10
10
  ],
11
11
  "license": "MIT",
12
12
  "engines": {
13
- "node": ">=14"
13
+ "node": ">=18"
14
14
  },
15
15
  "scripts": {
16
16
  "build": "tsc",
@@ -20,15 +20,14 @@
20
20
  "@semantic-release/git": "^10.0.0"
21
21
  },
22
22
  "devDependencies": {
23
- "semantic-release": "^19.0.3",
24
- "xo": "^0.50.0"
23
+ "eslint-config-xo-bizon": "^1.1.1",
24
+ "semantic-release": "^20.0.2",
25
+ "xo": "^0.53.1"
25
26
  },
26
27
  "xo": {
28
+ "extends": "xo-bizon",
27
29
  "semicolon": false,
28
- "space": 2,
29
- "rules": {
30
- "unicorn/prefer-module": "off"
31
- }
30
+ "space": 2
32
31
  },
33
32
  "publishConfig": {
34
33
  "access": "public"