Skip to content

Commit cdb2df2

Browse files
authored
Merge branch 'vnext' into sstoychev/fix-gulp-repositoryfy
2 parents 32ac699 + 07fefdf commit cdb2df2

File tree

6 files changed

+18
-13
lines changed

6 files changed

+18
-13
lines changed

azure-devops/app-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,4 @@ steps:
8585
findRegex: angular-demos
8686
npmBuildCommand: 'run build-ci'
8787
repositoryfy: true
88+
repositoryfyCommand: 'repositoryfyAngularDemos'

azure-devops/app-lob-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,4 @@ steps:
8585
findRegex: angular-demos
8686
npmBuildCommand: 'run build-ci:app-lob'
8787
repositoryfy: true
88+
repositoryfyCommand: 'repositoryfyAngularDemosLob'

azure-devops/templates/cd-template.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ parameters:
2222
- name: repositoryfy
2323
type: boolean
2424
default: false
25+
- name: repositoryfyCommand
26+
type: string
27+
default: ''
2528

2629
steps:
2730
# - task: CmdLine@2
@@ -142,7 +145,7 @@ steps:
142145
command: custom
143146
workingDir: ${{ parameters.workingDir }}
144147
verbose: false
145-
customCommand: run repositoryfyAngularDemosLob
148+
customCommand: run ${{ parameters.repositoryfyCommand }}
146149

147150
- task: Npm@1
148151
displayName: Production - Repositorify Angular Demos
@@ -151,7 +154,7 @@ steps:
151154
command: custom
152155
workingDir: ${{ parameters.workingDir }}
153156
verbose: false
154-
customCommand: run repositoryfyAngularDemosLob:prod
157+
customCommand: run ${{ parameters.repositoryfyCommand }}:prod
155158

156159
- task: CmdLine@2
157160
displayName: Stage changes

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"bootstrap": "5.3.3",
6666
"file-saver": "^2.0.2",
6767
"hammerjs": "^2.0.8",
68-
"igniteui-angular": "^19.1.0",
68+
"igniteui-angular": "^19.1.1",
6969
"igniteui-angular-charts": "^19.0.0",
7070
"igniteui-angular-core": "^19.0.0",
7171
"igniteui-angular-extras": "^19.1.2",
@@ -81,7 +81,7 @@
8181
"overrides": {
8282
"igniteui-angular-extras": {
8383
"igniteui-angular": "^19.1.0",
84-
"@infragistics/igniteui-angular": "^19.1.0",
84+
"@infragistics/igniteui-angular": "^19.1.1",
8585
"igniteui-angular-charts": "^19.0.0",
8686
"igniteui-angular-core": "^19.0.0",
8787
"@angular/core": "^19.0.0",

src/app/data-display/circular-progressbar/circular-styling-sample/circular-styling-sample.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$custom-theme: progress-circular-theme(
44
$base-circle-color: lightgray,
5-
$progress-circle-color: rgb(32, 192, 17),
5+
$fill-color-default: rgb(32, 192, 17),
66
);
77

88
@include css-vars($custom-theme);

0 commit comments

Comments
 (0)