@ribbon-studios/logger 3.1.0 → 3.1.2

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 +2 -5
  2. package/package.json +11 -5
package/README.md CHANGED
@@ -5,7 +5,6 @@
5
5
  [![Coveralls][coveralls-image]][coveralls-url]
6
6
 
7
7
  [![CI Build][github-actions-image]][github-actions-url]
8
- [![Maintainability][maintainability-image]][maintainability-url]
9
8
  [![Semantic Release][semantic-release-image]][semantic-release-url]
10
9
  [![Code Style: Prettier][code-style-image]][code-style-url]
11
10
 
@@ -27,13 +26,11 @@ logger.error('hello', 'world!'); // '[error]: hello world!'
27
26
  [npm-version-image]: https://img.shields.io/npm/v/@ribbon-studios/logger.svg
28
27
  [npm-downloads-image]: https://img.shields.io/npm/dm/@ribbon-studios/logger.svg
29
28
  [npm-url]: https://npmjs.org/package/@ribbon-studios/logger
30
- [github-actions-image]: https://img.shields.io/github/actions/workflow/status/ribbon-studios/logger/ci.yml?event=push
31
- [github-actions-url]: https://github.com/ribbon-studios/logger/actions/workflows/ci.yml?query=branch%3Amain
29
+ [github-actions-image]: https://codeberg.org/ribbon-studios/logger/badges/workflows/ci.yml/badge.svg?branch=main
30
+ [github-actions-url]: https://codeberg.org/ribbon-studios/logger/actions?workflow=ci.yml&branch=main
32
31
  [coveralls-image]: https://img.shields.io/coveralls/ribbon-studios/logger.svg
33
32
  [coveralls-url]: https://coveralls.io/github/ribbon-studios/logger?branch=main
34
33
  [code-style-image]: https://img.shields.io/badge/code%20style-prettier-ff69b4.svg
35
34
  [code-style-url]: https://prettier.io
36
- [maintainability-image]: https://img.shields.io/codeclimate/maintainability/ribbon-studios/refreshly
37
- [maintainability-url]: https://codeclimate.com/github/ribbon-studios/refreshly/maintainability
38
35
  [semantic-release-url]: https://github.com/semantic-release/semantic-release
39
36
  [semantic-release-image]: https://img.shields.io/badge/%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ribbon-studios/logger",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "type": "module",
5
5
  "description": "A simple logger for all Ribbon Studios Apps & Libraries",
6
6
  "source": "src/index.ts",
@@ -14,9 +14,10 @@
14
14
  "test:coverage": "vitest --coverage"
15
15
  },
16
16
  "peerDependencies": {
17
- "chalk": "^5.4.1"
17
+ "chalk": "^5.6.2"
18
18
  },
19
19
  "devDependencies": {
20
+ "@fsl-s/semantic-release-forgejo": "^1.0.0",
20
21
  "@types/chance": "^1.1.7",
21
22
  "@types/node": "^22.19.15",
22
23
  "@vitest/coverage-v8": "4.1.0",
@@ -25,19 +26,24 @@
25
26
  "dedent": "^1.7.2",
26
27
  "eslint-plugin-unused-imports": "^4.4.1",
27
28
  "jiti": "^2.6.1",
29
+ "semantic-release": "^22",
28
30
  "string-dedent": "^3.0.2",
29
31
  "typescript": "^5.9.3",
30
- "typescript-eslint": "^8.57.0",
31
- "vite": "^8.0.0",
32
+ "typescript-eslint": "^8.57.1",
33
+ "vite": "^8.0.1",
32
34
  "vite-plugin-dts": "^4.5.4",
33
35
  "vitest": "^4.1.0"
34
36
  },
35
37
  "publishConfig": {
36
38
  "access": "public"
37
39
  },
40
+ "homepage": "https://codeberg.org/ribbon-studios/logger",
41
+ "bugs": {
42
+ "url": "https://codeberg.org/ribbon-studios/logger/issues"
43
+ },
38
44
  "repository": {
39
45
  "type": "git",
40
- "url": "git+https://github.com/ribbon-studios/logger.git"
46
+ "url": "https://codeberg.org/ribbon-studios/logger.git"
41
47
  },
42
48
  "license": "MIT"
43
49
  }