igniteui-cli 14.3.3 → 14.3.5-beta.0
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.5-beta.0",
|
|
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.1435-beta.0",
|
|
74
|
+
"@igniteui/cli-core": "~14.3.5-beta.0",
|
|
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
|
@@ -30,9 +30,12 @@ jobs:
|
|
|
30
30
|
node-version: ${{ matrix.node-version }}
|
|
31
31
|
# cache: 'npm' # enable after committing lock file from first install
|
|
32
32
|
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
33
|
+
- name: Update Router Navigation
|
|
34
|
+
run: find ./src -type f -name "*.ts" -exec sed -i "s|Router.go(\`/|Router.go(\`/${{ github.event.repository.name }}/|g" {} \;
|
|
33
35
|
- run: npm run build
|
|
34
36
|
- name: Update base href in index.html
|
|
35
|
-
run:
|
|
37
|
+
run: |
|
|
38
|
+
sed -i 's|<base href="[^"]*">|<base href="/${{ github.event.repository.name }}/">|' ./dist/index.html
|
|
36
39
|
- name: Update Resource Paths
|
|
37
40
|
run: find ./dist -maxdepth 1 -type f ! -name 'sw*.js' ! -name 'workbox*.js' -name '*.js' -exec sed -i -e "s|/src/assets|/${{ github.event.repository.name }}/src/assets|g" -e "s|url('/src/assets|url('/${{ github.event.repository.name }}/src/assets|g" {} +
|
|
38
41
|
- name: Copy ig-theme.css to dist
|