igniteui-cli 14.3.4 → 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.4",
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.1434",
74
- "@igniteui/cli-core": "~14.3.4",
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",
@@ -31,9 +31,7 @@ jobs:
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
33
  - name: Update Router Navigation
34
- run: |
35
- sed -i "s|Router.go(\`/|Router.go(\`/${{ github.event.repository.name }}/|g" ./src/app/app.ts
36
- sed -i "s|Router.go(\`/|Router.go(\`/${{ github.event.repository.name }}/|g" ./src/app/home/home.ts
34
+ run: find ./src -type f -name "*.ts" -exec sed -i "s|Router.go(\`/|Router.go(\`/${{ github.event.repository.name }}/|g" {} \;
37
35
  - run: npm run build
38
36
  - name: Update base href in index.html
39
37
  run: |