@vixoniccom/birthdays 0.7.4-dev.4 → 0.7.4-dev.6
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/.github/workflows/sonarqube.yml +30 -0
- package/CHANGELOG.md +4 -11
- package/configuration/dataGroup/DataInputs.ts +2 -0
- package/configuration/index.ts +1 -2
- package/configuration.json +0 -17
- package/package.json +1 -1
- package/sonar-project.properties +1 -0
- package/configuration/documentGroup/documentInputs.ts +0 -6
- package/configuration/documentGroup/index.ts +0 -8
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: Sonarqube Analysis
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- development
|
|
7
|
+
pull_request:
|
|
8
|
+
types: [opened, synchronize, reopened]
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
sonarqube:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
# Disabling shallow clone is recommended for improving relevancy of reporting.
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
|
|
19
|
+
- name: SonarQube Scan
|
|
20
|
+
uses: sonarsource/sonarqube-scan-action@master
|
|
21
|
+
env:
|
|
22
|
+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
23
|
+
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
24
|
+
|
|
25
|
+
- name: SonarQube Quality Gate Check
|
|
26
|
+
uses: sonarsource/sonarqube-quality-gate-action@master
|
|
27
|
+
timeout-minutes: 5
|
|
28
|
+
env:
|
|
29
|
+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
30
|
+
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
### [0.7.4-dev.
|
|
5
|
+
### [0.7.4-dev.6](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.5...v0.7.4-dev.6) (2025-07-14)
|
|
6
6
|
|
|
7
|
-
### [0.7.4-dev.3](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.2...v0.7.4-dev.3) (2025-07-09)
|
|
8
7
|
|
|
8
|
+
### Features
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
* button redirect document ([84462fa](https://github.com/Vixonic/store-birthdays/commit/84462faa03284cfacb692cbeba18424f29c4b92d))
|
|
10
|
+
* added sonarque propertie ([63e2d7b](https://github.com/Vixonic/store-birthdays/commit/63e2d7b297d83ed9e16f7f54372d5289eb67658b))
|
|
13
11
|
|
|
14
|
-
### [0.7.4-dev.
|
|
12
|
+
### [0.7.4-dev.5](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.5) (2025-07-09)
|
|
15
13
|
|
|
16
14
|
### [0.7.4-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.1) (2025-07-09)
|
|
17
15
|
|
|
18
|
-
|
|
19
|
-
### Features
|
|
20
|
-
|
|
21
|
-
* Add redirect button for document access and update parameters for document ID ([75969b6](https://github.com/Vixonic/store-birthdays/commit/75969b63e1f146ea8411939b19712a3e90311f2c))
|
|
22
|
-
|
|
23
16
|
### [0.7.4-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.3...v0.7.4-dev.0) (2025-06-25)
|
|
24
17
|
|
|
25
18
|
|
package/configuration/index.ts
CHANGED
|
@@ -2,8 +2,7 @@ import { Configuration } from '@vixoniccom/modules'
|
|
|
2
2
|
import { dataGroup } from './dataGroup'
|
|
3
3
|
import { appearanceGroup } from './appearanceGroup'
|
|
4
4
|
import { standardGroup } from './standardGroup'
|
|
5
|
-
import { documentGroup } from './documentGroup'
|
|
6
5
|
|
|
7
6
|
export const configuration = new Configuration({
|
|
8
|
-
schema: [
|
|
7
|
+
schema: [dataGroup, appearanceGroup, standardGroup],
|
|
9
8
|
})
|
package/configuration.json
CHANGED
|
@@ -1,22 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": [
|
|
3
|
-
{
|
|
4
|
-
"id": "documentGroup",
|
|
5
|
-
"label": "Documento",
|
|
6
|
-
"type": "group",
|
|
7
|
-
"items": [
|
|
8
|
-
{
|
|
9
|
-
"type": "label",
|
|
10
|
-
"label": "Documento"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": "documentService",
|
|
14
|
-
"label": "Ir al documento",
|
|
15
|
-
"type": "redirect-button",
|
|
16
|
-
"description": "Documento"
|
|
17
|
-
}
|
|
18
|
-
]
|
|
19
|
-
},
|
|
20
3
|
{
|
|
21
4
|
"id": "dataGroup",
|
|
22
5
|
"label": "Configuración",
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sonar.projectKey=Vixonic_store-birthdays_7769e3be-dc9d-4ca7-bf1a-4bfa182a053c
|