igniteui-cli 14.3.11 → 14.3.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "14.3.
|
|
3
|
+
"version": "14.3.12",
|
|
4
4
|
"description": "CLI tool for creating Ignite UI projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"all": true
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@igniteui/angular-templates": "~19.0.
|
|
74
|
-
"@igniteui/cli-core": "~14.3.
|
|
73
|
+
"@igniteui/angular-templates": "~19.0.14312",
|
|
74
|
+
"@igniteui/cli-core": "~14.3.12",
|
|
75
75
|
"@inquirer/prompts": "^5.4.0",
|
|
76
76
|
"@types/yargs": "^17.0.33",
|
|
77
77
|
"chalk": "^5.3.0",
|
package/templates/webcomponents/igc-ts/projects/_base/files/__dot__github/workflows/github-pages.yml
CHANGED
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
run: |
|
|
36
36
|
find ./src -type f -name "*.ts" -exec sed -i "s|Router.go(\`/|Router.go(\`/${{ github.event.repository.name }}/|g" {} \;
|
|
37
37
|
find ./ -type f -name "vite.config.ts" -exec sed -i "s|navigateFallback: '/index.html'|navigateFallback: 'index.html'|g" {} \;
|
|
38
|
-
- run: npm run build
|
|
38
|
+
- run: npm run build -- --base=/${{ github.event.repository.name }}/
|
|
39
39
|
- name: Update base href in index.html
|
|
40
40
|
run: |
|
|
41
41
|
sed -i 's|<base href="[^"]*">|<base href="/${{ github.event.repository.name }}/">|' ./dist/index.html
|
|
@@ -44,7 +44,9 @@ jobs:
|
|
|
44
44
|
- name: Copy ig-theme.css to dist
|
|
45
45
|
run: cp ./ig-theme.css ./dist/
|
|
46
46
|
- name: Update href Paths for ig-theme.css
|
|
47
|
-
run:
|
|
47
|
+
run: |
|
|
48
|
+
find ./dist -type f -exec sed -i "s|href='../../ig-theme.css'|href='../../${{ github.event.repository.name }}/ig-theme.css'|g" {} +;
|
|
49
|
+
find ./dist -type f -exec sed -i "s|href=\"../../ig-theme.css\"|href=\"../../${{ github.event.repository.name }}/ig-theme.css\"|g" {} +;
|
|
48
50
|
- name: SPA routing handling
|
|
49
51
|
run: cp ./dist/index.html ./dist/404.html
|
|
50
52
|
- name: Upload build artifact to GitHub Pages
|