igniteui-cli 14.6.5 → 14.6.6
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.6.
|
|
3
|
+
"version": "14.6.6",
|
|
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": "~20.1.
|
|
74
|
-
"@igniteui/cli-core": "~14.6.
|
|
73
|
+
"@igniteui/angular-templates": "~20.1.1466",
|
|
74
|
+
"@igniteui/cli-core": "~14.6.6",
|
|
75
75
|
"@inquirer/prompts": "^5.4.0",
|
|
76
76
|
"@types/yargs": "^17.0.33",
|
|
77
77
|
"chalk": "^5.3.0",
|
package/templates/react/igr-ts/projects/_base/files/__dot__github/workflows/github-pages.yml
CHANGED
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
find ./dist/assets -type f -name "*.js" -exec sed -i 's|src/assets|${{ github.event.repository.name }}/assets|g' {} +;
|
|
40
40
|
find ./dist/assets -type f -name "*.js" -exec sed -i 's|/static-data/|/${{ github.event.repository.name }}/static-data/|g' {} +
|
|
41
41
|
- name: Copy Resources to dist
|
|
42
|
-
run: mkdir -p ./dist/assets && cp -R ./src/assets/* ./dist/assets
|
|
42
|
+
run: if [ -d "./src/assets" ]; then mkdir -p ./dist/assets && cp -R ./src/assets/* ./dist/assets/; fi
|
|
43
43
|
- name: SPA routing handling
|
|
44
44
|
run: cp ./dist/index.html ./dist/404.html
|
|
45
45
|
- name: Upload build artifact to GitHub Pages
|