@igniteui/angular-templates 19.0.1430 → 19.0.1431-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.
- package/igx-ts/projects/_base/files/__dot__github/workflows/github-pages.yml +3 -10
- package/igx-ts/projects/_base/files/package.json +7 -0
- package/igx-ts/projects/_base_with_home/files/__dot__github/workflows/github-pages.yml +3 -10
- package/igx-ts-legacy/projects/_base/files/__dot__github/workflows/github-pages.yml +3 -10
- package/igx-ts-legacy/projects/_base/files/package.json +8 -1
- package/igx-ts-legacy/projects/_base_with_home/files/__dot__github/workflows/github-pages.yml +3 -10
- package/package.json +2 -2
|
@@ -32,22 +32,15 @@ jobs:
|
|
|
32
32
|
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
33
33
|
- name: Set project name
|
|
34
34
|
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
35
|
-
- name: Determine if project is standalone and set build path
|
|
36
|
-
run: |
|
|
37
|
-
if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
|
|
38
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
|
|
39
|
-
else
|
|
40
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
|
|
41
|
-
fi
|
|
42
35
|
- name: Build project with dynamic base-href
|
|
43
36
|
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
44
37
|
- name: Update Resource Paths
|
|
45
|
-
run: find
|
|
38
|
+
run: find ./dist/${{ env.PROJECT_NAME }}/browser -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
46
39
|
- name: SPA routing handling
|
|
47
|
-
run: cp
|
|
40
|
+
run: cp ./dist/${{ env.PROJECT_NAME }}/browser/index.html ./dist/${{ env.PROJECT_NAME }}/browser/404.html
|
|
48
41
|
- name: Upload build artifact to GitHub Pages
|
|
49
42
|
uses: actions/upload-pages-artifact@v1
|
|
50
43
|
with:
|
|
51
|
-
path:
|
|
44
|
+
path: ./dist/${{ env.PROJECT_NAME }}/browser
|
|
52
45
|
- name: Deploy to GitHub Pages
|
|
53
46
|
uses: actions/deploy-pages@v1
|
|
@@ -26,6 +26,13 @@
|
|
|
26
26
|
"tslib": "~2.3.0",
|
|
27
27
|
"zone.js": "~0.15.0"
|
|
28
28
|
},
|
|
29
|
+
"overrides": {
|
|
30
|
+
"igniteui-angular-charts": {
|
|
31
|
+
"@angular/core": "^19.0.0",
|
|
32
|
+
"@angular/common": "^19.0.0",
|
|
33
|
+
"@angular/compiler": "^19.0.0"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
29
36
|
"devDependencies": {
|
|
30
37
|
"@angular-devkit/build-angular": "~19.0.0",
|
|
31
38
|
"@angular-eslint/builder": "~19.0.0-alpha.1",
|
|
@@ -32,22 +32,15 @@ jobs:
|
|
|
32
32
|
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
33
33
|
- name: Set project name
|
|
34
34
|
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
35
|
-
- name: Determine if project is standalone and set build path
|
|
36
|
-
run: |
|
|
37
|
-
if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
|
|
38
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
|
|
39
|
-
else
|
|
40
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
|
|
41
|
-
fi
|
|
42
35
|
- name: Build project with dynamic base-href
|
|
43
36
|
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
44
37
|
- name: Update Resource Paths
|
|
45
|
-
run: find
|
|
38
|
+
run: find ./dist/${{ env.PROJECT_NAME }}/browser -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
46
39
|
- name: SPA routing handling
|
|
47
|
-
run: cp
|
|
40
|
+
run: cp ./dist/${{ env.PROJECT_NAME }}/browser/index.html ./dist/${{ env.PROJECT_NAME }}/browser/404.html
|
|
48
41
|
- name: Upload build artifact to GitHub Pages
|
|
49
42
|
uses: actions/upload-pages-artifact@v1
|
|
50
43
|
with:
|
|
51
|
-
path:
|
|
44
|
+
path: ./dist/${{ env.PROJECT_NAME }}/browser
|
|
52
45
|
- name: Deploy to GitHub Pages
|
|
53
46
|
uses: actions/deploy-pages@v1
|
|
@@ -32,22 +32,15 @@ jobs:
|
|
|
32
32
|
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
33
33
|
- name: Set project name
|
|
34
34
|
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
35
|
-
- name: Determine if project is standalone and set build path
|
|
36
|
-
run: |
|
|
37
|
-
if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
|
|
38
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
|
|
39
|
-
else
|
|
40
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
|
|
41
|
-
fi
|
|
42
35
|
- name: Build project with dynamic base-href
|
|
43
36
|
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
44
37
|
- name: Update Resource Paths
|
|
45
|
-
run: find
|
|
38
|
+
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
46
39
|
- name: SPA routing handling
|
|
47
|
-
run: cp
|
|
40
|
+
run: cp ./dist/${{ env.PROJECT_NAME }}/index.html ./dist/${{ env.PROJECT_NAME }}/404.html
|
|
48
41
|
- name: Upload build artifact to GitHub Pages
|
|
49
42
|
uses: actions/upload-pages-artifact@v1
|
|
50
43
|
with:
|
|
51
|
-
path:
|
|
44
|
+
path: ./dist/${{ env.PROJECT_NAME }}
|
|
52
45
|
- name: Deploy to GitHub Pages
|
|
53
46
|
uses: actions/deploy-pages@v1
|
|
@@ -24,7 +24,14 @@
|
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.0",
|
|
26
26
|
"tslib": "~2.3.0",
|
|
27
|
-
"zone.js": "~0.
|
|
27
|
+
"zone.js": "~0.15.0"
|
|
28
|
+
},
|
|
29
|
+
"overrides": {
|
|
30
|
+
"igniteui-angular-charts": {
|
|
31
|
+
"@angular/core": "^19.0.0",
|
|
32
|
+
"@angular/common": "^19.0.0",
|
|
33
|
+
"@angular/compiler": "^19.0.0"
|
|
34
|
+
}
|
|
28
35
|
},
|
|
29
36
|
"devDependencies": {
|
|
30
37
|
"@angular-devkit/build-angular": "~19.0.0",
|
package/igx-ts-legacy/projects/_base_with_home/files/__dot__github/workflows/github-pages.yml
CHANGED
|
@@ -32,22 +32,15 @@ jobs:
|
|
|
32
32
|
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
33
33
|
- name: Set project name
|
|
34
34
|
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
35
|
-
- name: Determine if project is standalone and set build path
|
|
36
|
-
run: |
|
|
37
|
-
if jq -e ".projects[\"${{ env.PROJECT_NAME }}\"].architect.build.builder == \"@angular-devkit/build-angular:application\"" angular.json > /dev/null; then
|
|
38
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}/browser" >> $GITHUB_ENV
|
|
39
|
-
else
|
|
40
|
-
echo "BUILD_PATH=./dist/${{ env.PROJECT_NAME }}" >> $GITHUB_ENV
|
|
41
|
-
fi
|
|
42
35
|
- name: Build project with dynamic base-href
|
|
43
36
|
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
44
37
|
- name: Update Resource Paths
|
|
45
|
-
run: find
|
|
38
|
+
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
46
39
|
- name: SPA routing handling
|
|
47
|
-
run: cp
|
|
40
|
+
run: cp ./dist/${{ env.PROJECT_NAME }}/index.html ./dist/${{ env.PROJECT_NAME }}/404.html
|
|
48
41
|
- name: Upload build artifact to GitHub Pages
|
|
49
42
|
uses: actions/upload-pages-artifact@v1
|
|
50
43
|
with:
|
|
51
|
-
path:
|
|
44
|
+
path: ./dist/${{ env.PROJECT_NAME }}
|
|
52
45
|
- name: Deploy to GitHub Pages
|
|
53
46
|
uses: actions/deploy-pages@v1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.1431-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.3.
|
|
15
|
+
"@igniteui/cli-core": "~14.3.1-beta.1",
|
|
16
16
|
"typescript": "~5.5.4"
|
|
17
17
|
}
|
|
18
18
|
}
|