@accelint/biome-config 1.0.0 → 1.0.1

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @accelint/biome-config
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 64280a7: - Released `@accelint/constellation-tracker` - A tool that helps maintain catalog-info.yaml files for Constellation integration
8
+ - Ensures all packages include catalog-info.yaml in their published files for better discoverability and integration with Constellation
9
+ - Provides automated tracking and updating of component metadata across the project
10
+ - Enhanced package metadata to support better integration with internal tooling
11
+
3
12
  ## 1.0.0
4
13
 
5
14
  ### 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.0
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,18 +1,34 @@
1
1
  {
2
2
  "name": "@accelint/biome-config",
3
- "version": "1.0.0",
3
+ "title": "Biome Configuration",
4
+ "version": "1.0.1",
4
5
  "private": false,
5
6
  "license": "Apache-2.0",
7
+ "keywords": [
8
+ "dev-tk",
9
+ "tooling"
10
+ ],
11
+ "description": "The shared Biome configuration used across Accelint projects.",
6
12
  "repository": {
7
13
  "type": "git",
8
14
  "url": "https://github.com/gohypergiant/standard-toolkit"
9
15
  },
16
+ "owner": "default/pathfinder",
17
+ "subPath": "tooling/biome-config",
10
18
  "type": "module",
19
+ "files": [
20
+ "./analyzer.json",
21
+ "./catalog-info.yaml",
22
+ "./CHANGELOG.md",
23
+ "./formatter.json",
24
+ "./linter.json",
25
+ "./package.json",
26
+ "./README.md"
27
+ ],
11
28
  "exports": {
12
29
  "./analyzer": "./analyzer.json",
13
30
  "./formatter": "./formatter.json",
14
- "./linter": "./linter.json",
15
- "./package.json": "./package.json"
31
+ "./linter": "./linter.json"
16
32
  },
17
33
  "$schema": "https://json.schemastore.org/package",
18
34
  "author": "https://hypergiant.com",
@@ -21,6 +37,7 @@
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
  }