@accelint/biome-config 1.0.0 → 1.0.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.
- package/CHANGELOG.md +17 -0
- package/catalog-info.yaml +24 -0
- package/package.json +22 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @accelint/biome-config
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0d697fa: Fixed definitions in package files for longhand repository definitions, while disabling the option in syncpack that changed it.
|
|
8
|
+
- f99f294: Updated syncpack and realigned all packages for dependency versions
|
|
9
|
+
- 935b8e5: Updated the package names in the Constellation configuration file.
|
|
10
|
+
|
|
11
|
+
## 1.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 64280a7: - Released `@accelint/constellation-tracker` - A tool that helps maintain catalog-info.yaml files for Constellation integration
|
|
16
|
+
- Ensures all packages include catalog-info.yaml in their published files for better discoverability and integration with Constellation
|
|
17
|
+
- Provides automated tracking and updating of component metadata across the project
|
|
18
|
+
- Enhanced package metadata to support better integration with internal tooling
|
|
19
|
+
|
|
3
20
|
## 1.0.0
|
|
4
21
|
|
|
5
22
|
### Major Changes
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
apiVersion: backstage.io/v1alpha1
|
|
3
|
+
kind: Component
|
|
4
|
+
metadata:
|
|
5
|
+
name: accelint_biome-config
|
|
6
|
+
title: Biome Configuration
|
|
7
|
+
description: The shared Biome configuration used across Accelint projects.
|
|
8
|
+
annotations:
|
|
9
|
+
backstage.io/edit-url: https://github.com/gohypergiant/standard-toolkit/blob/main/tooling/biome-config/catalog-info.yaml
|
|
10
|
+
backstage.io/techdocs-ref: dir:.
|
|
11
|
+
package/version: 1.0.2
|
|
12
|
+
github.com/project-slug: gohypergiant/standard-toolkit
|
|
13
|
+
links:
|
|
14
|
+
- url: https://github.com/gohypergiant/standard-toolkit/tree/main/tooling/biome-config
|
|
15
|
+
title: Documentation
|
|
16
|
+
icon: docs
|
|
17
|
+
type: documentation
|
|
18
|
+
tags:
|
|
19
|
+
- dev-tk
|
|
20
|
+
- tooling
|
|
21
|
+
spec:
|
|
22
|
+
type: library
|
|
23
|
+
lifecycle: production
|
|
24
|
+
owner: group:default/pathfinder
|
package/package.json
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package",
|
|
2
3
|
"name": "@accelint/biome-config",
|
|
3
|
-
"
|
|
4
|
+
"title": "Biome Configuration",
|
|
5
|
+
"description": "The shared Biome configuration used across Accelint projects.",
|
|
6
|
+
"author": "https://hypergiant.com",
|
|
7
|
+
"owner": "default/pathfinder",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"dev-tk",
|
|
10
|
+
"tooling"
|
|
11
|
+
],
|
|
12
|
+
"subPath": "tooling/biome-config",
|
|
13
|
+
"version": "1.0.2",
|
|
4
14
|
"private": false,
|
|
5
15
|
"license": "Apache-2.0",
|
|
6
16
|
"repository": {
|
|
@@ -8,19 +18,26 @@
|
|
|
8
18
|
"url": "https://github.com/gohypergiant/standard-toolkit"
|
|
9
19
|
},
|
|
10
20
|
"type": "module",
|
|
21
|
+
"files": [
|
|
22
|
+
"./analyzer.json",
|
|
23
|
+
"./catalog-info.yaml",
|
|
24
|
+
"./CHANGELOG.md",
|
|
25
|
+
"./formatter.json",
|
|
26
|
+
"./linter.json",
|
|
27
|
+
"./package.json",
|
|
28
|
+
"./README.md"
|
|
29
|
+
],
|
|
11
30
|
"exports": {
|
|
12
31
|
"./analyzer": "./analyzer.json",
|
|
13
32
|
"./formatter": "./formatter.json",
|
|
14
|
-
"./linter": "./linter.json"
|
|
15
|
-
"./package.json": "./package.json"
|
|
33
|
+
"./linter": "./linter.json"
|
|
16
34
|
},
|
|
17
|
-
"$schema": "https://json.schemastore.org/package",
|
|
18
|
-
"author": "https://hypergiant.com",
|
|
19
35
|
"publishConfig": {
|
|
20
36
|
"access": "public"
|
|
21
37
|
},
|
|
22
38
|
"sideEffects": false,
|
|
23
39
|
"scripts": {
|
|
40
|
+
"constellation-tracker": "node ../constellation-tracker/dist/main.js",
|
|
24
41
|
"lint": "pnpm biome lint"
|
|
25
42
|
}
|
|
26
43
|
}
|