Skip to content

Commit 9c97a02

Browse files
author
katherinedragieva
committed
Merge branch 'kdragieva/3264-add-cascading-combos-grid-sample' of https://github.com/IgniteUI/igniteui-angular-samples into kdragieva/3264-add-cascading-combos-grid-sample
2 parents 0449801 + ddb6935 commit 9c97a02

18 files changed

Lines changed: 3604 additions & 4601 deletions

.github/workflows/build-app-crm.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ jobs:
4242
node-version: ${{ matrix.node-version }}
4343
cache: 'npm'
4444

45+
- name: Npm add registry
46+
run: npm config set @infragistics:registry https://${{secrets.IG_SCOPE}}
47+
48+
- name: Npm config auth
49+
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
50+
4551
- name: Install dependencies
4652
run: npm ci
4753

.github/workflows/build-app-lob.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
node-version: ${{ matrix.node-version }}
4848
cache: 'npm'
4949

50+
- name: Npm add registry
51+
run: npm config set @infragistics:registry https://${{secrets.IG_SCOPE}}
52+
53+
- name: Npm config auth
54+
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
55+
5056
- name: Install dependencies
5157
run: npm ci
5258

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@infragistics:registry=https://packages.infragistics.com/npm/js-licensed/

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"angular",
88
"igniteui",
99
"igniteui-angular"
10-
]
10+
],
11+
"typescript.tsdk": "node_modules\\typescript\\lib"
1112
}

angular.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"progress": true,
3434
"stylePreprocessorOptions": {
3535
"includePaths": ["node_modules"]
36-
}
36+
},
3737
},
3838
"configurations": {
3939
"production": {
@@ -151,7 +151,8 @@
151151
"namedChunks": true,
152152
"stylePreprocessorOptions": {
153153
"includePaths": ["node_modules"]
154-
}
154+
},
155+
"preserveSymlinks": true
155156
},
156157
"configurations": {
157158
"production": {
@@ -171,8 +172,8 @@
171172
"budgets": [
172173
{
173174
"type": "initial",
174-
"maximumWarning": "5mb",
175-
"maximumError": "7mb"
175+
"maximumWarning": "8mb",
176+
"maximumError": "9mb"
176177
},
177178
{
178179
"type": "anyComponentStyle",
@@ -294,8 +295,8 @@
294295
"budgets": [
295296
{
296297
"type": "initial",
297-
"maximumWarning": "3mb",
298-
"maximumError": "5mb"
298+
"maximumWarning": "8mb",
299+
"maximumError": "9mb"
299300
},
300301
{
301302
"type": "anyComponentStyle",

0 commit comments

Comments
 (0)