@igniteui/angular-templates 18.2.1421 → 18.2.1422-beta.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.
@@ -8,7 +8,8 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
-
11
+ # Deactivate the workflow. Will be changed when AB is ready
12
+ if: false
12
13
  runs-on: ubuntu-latest
13
14
 
14
15
  permissions:
@@ -17,7 +18,7 @@ jobs:
17
18
 
18
19
  strategy:
19
20
  matrix:
20
- node-version: [18.x, 20.x]
21
+ node-version: [22.x]
21
22
 
22
23
  steps:
23
24
  - uses: actions/checkout@v3
@@ -31,10 +32,10 @@ jobs:
31
32
  run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
32
33
  - name: Determine if project is standalone and set build path
33
34
  run: |
34
- if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].schematics[\"@schematics/angular:application\"].standalone == false" angular.json > /dev/null; then
35
- echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
36
- else
35
+ if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
37
36
  echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
37
+ else
38
+ echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
38
39
  fi
39
40
  - name: Build project with dynamic base-href
40
41
  run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
@@ -19,7 +19,7 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- node-version: [18.x, 20.x]
22
+ node-version: [22.x]
23
23
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
24
24
 
25
25
  steps:
@@ -8,7 +8,8 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
-
11
+ # Deactivate the workflow. Will be changed when AB is ready
12
+ if: false
12
13
  runs-on: ubuntu-latest
13
14
 
14
15
  permissions:
@@ -17,7 +18,7 @@ jobs:
17
18
 
18
19
  strategy:
19
20
  matrix:
20
- node-version: [18.x, 20.x]
21
+ node-version: [22.x]
21
22
 
22
23
  steps:
23
24
  - uses: actions/checkout@v3
@@ -31,10 +32,10 @@ jobs:
31
32
  run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
32
33
  - name: Determine if project is standalone and set build path
33
34
  run: |
34
- if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].schematics[\"@schematics/angular:application\"].standalone == false" angular.json > /dev/null; then
35
- echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
36
- else
35
+ if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
37
36
  echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
37
+ else
38
+ echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
38
39
  fi
39
40
  - name: Build project with dynamic base-href
40
41
  run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
@@ -19,7 +19,7 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- node-version: [18.x, 20.x]
22
+ node-version: [22.x]
23
23
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
24
24
 
25
25
  steps:
@@ -8,7 +8,8 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
-
11
+ # Deactivate the workflow. Will be changed when AB is ready
12
+ if: false
12
13
  runs-on: ubuntu-latest
13
14
 
14
15
  permissions:
@@ -17,7 +18,7 @@ jobs:
17
18
 
18
19
  strategy:
19
20
  matrix:
20
- node-version: [18.x, 20.x]
21
+ node-version: [22.x]
21
22
 
22
23
  steps:
23
24
  - uses: actions/checkout@v3
@@ -31,10 +32,10 @@ jobs:
31
32
  run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
32
33
  - name: Determine if project is standalone and set build path
33
34
  run: |
34
- if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].schematics[\"@schematics/angular:application\"].standalone == false" angular.json > /dev/null; then
35
- echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
36
- else
35
+ if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
37
36
  echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
37
+ else
38
+ echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
38
39
  fi
39
40
  - name: Build project with dynamic base-href
40
41
  run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
@@ -19,7 +19,7 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- node-version: [18.x, 20.x]
22
+ node-version: [22.x]
23
23
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
24
24
 
25
25
  steps:
@@ -8,7 +8,8 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
-
11
+ # Deactivate the workflow. Will be changed when AB is ready
12
+ if: false
12
13
  runs-on: ubuntu-latest
13
14
 
14
15
  permissions:
@@ -17,7 +18,7 @@ jobs:
17
18
 
18
19
  strategy:
19
20
  matrix:
20
- node-version: [18.x, 20.x]
21
+ node-version: [22.x]
21
22
 
22
23
  steps:
23
24
  - uses: actions/checkout@v3
@@ -31,10 +32,10 @@ jobs:
31
32
  run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
32
33
  - name: Determine if project is standalone and set build path
33
34
  run: |
34
- if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].schematics[\"@schematics/angular:application\"].standalone == false" angular.json > /dev/null; then
35
- echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
36
- else
35
+ if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
37
36
  echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
37
+ else
38
+ echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
38
39
  fi
39
40
  - name: Build project with dynamic base-href
40
41
  run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
@@ -19,7 +19,7 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- node-version: [18.x, 20.x]
22
+ node-version: [22.x]
23
23
  # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
24
24
 
25
25
  steps:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "18.2.1421",
3
+ "version": "18.2.1422-beta.1",
4
4
  "description": "Templates for Ignite UI for Angular projects and components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,7 @@
12
12
  "author": "Infragistics",
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@igniteui/cli-core": "~14.2.1",
15
+ "@igniteui/cli-core": "~14.2.2-beta.1",
16
16
  "typescript": "~5.5.4"
17
17
  }
18
18
  }