@igniteui/angular-templates 19.0.1432-beta.0 → 19.0.1433-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.
@@ -34,7 +34,8 @@
34
34
  "prefix": "app",
35
35
  "style": "kebab-case"
36
36
  }
37
- ]
37
+ ],
38
+ "@angular-eslint/prefer-standalone": "off"
38
39
  }
39
40
  },
40
41
  {
@@ -35,12 +35,12 @@ jobs:
35
35
  - name: Build project with dynamic base-href
36
36
  run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
37
37
  - name: Update Resource Paths
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" {} +
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" {} +
39
39
  - name: SPA routing handling
40
- run: cp ./dist/${{ env.PROJECT_NAME }}/index.html ./dist/${{ env.PROJECT_NAME }}/404.html
40
+ run: cp ./dist/${{ env.PROJECT_NAME }}/browser/index.html ./dist/${{ env.PROJECT_NAME }}/browser/404.html
41
41
  - name: Upload build artifact to GitHub Pages
42
42
  uses: actions/upload-pages-artifact@v1
43
43
  with:
44
- path: ./dist/${{ env.PROJECT_NAME }}
44
+ path: ./dist/${{ env.PROJECT_NAME }}/browser
45
45
  - name: Deploy to GitHub Pages
46
46
  uses: actions/deploy-pages@v1
@@ -24,8 +24,8 @@
24
24
  "options": {
25
25
  "outputPath": "dist/<%=dashName%>",
26
26
  "index": "src/index.html",
27
- "main": "src/main.ts",
28
- "polyfills": "src/polyfills.ts",
27
+ "browser": "src/main.ts",
28
+ "polyfills": ["src/polyfills.ts"],
29
29
  "tsConfig": "tsconfig.app.json",
30
30
  "inlineStyleLanguage": "scss",
31
31
  "assets": [
@@ -65,9 +65,7 @@
65
65
  "outputHashing": "all"
66
66
  },
67
67
  "development": {
68
- "buildOptimizer": false,
69
68
  "optimization": false,
70
- "vendorChunk": true,
71
69
  "extractLicenses": false,
72
70
  "sourceMap": true,
73
71
  "namedChunks": true
@@ -3,7 +3,8 @@ import { Component } from '@angular/core';
3
3
  @Component({
4
4
  selector: 'app-root',
5
5
  templateUrl: './app.component.html',
6
- styleUrls: ['./app.component.scss']
6
+ styleUrls: ['./app.component.scss'],
7
+ standalone: false
7
8
  })
8
9
  export class AppComponent {
9
10
  title = 'Home - IgniteUI for Angular';
@@ -2,5 +2,6 @@ import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
4
  template: '<h2>Error 500: Internal Server Error</h2>',
5
+ standalone: false
5
6
  })
6
7
  export class UncaughtErrorComponent { }
@@ -1,6 +1,7 @@
1
1
  import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
- template: '<h2>Error 404: Page not found</h2>'
4
+ template: '<h2>Error 404: Page not found</h2>',
5
+ standalone: false
5
6
  })
6
7
  export class PageNotFoundComponent { }
@@ -35,12 +35,12 @@ jobs:
35
35
  - name: Build project with dynamic base-href
36
36
  run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
37
37
  - name: Update Resource Paths
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" {} +
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" {} +
39
39
  - name: SPA routing handling
40
- run: cp ./dist/${{ env.PROJECT_NAME }}/index.html ./dist/${{ env.PROJECT_NAME }}/404.html
40
+ run: cp ./dist/${{ env.PROJECT_NAME }}/browser/index.html ./dist/${{ env.PROJECT_NAME }}/browser/404.html
41
41
  - name: Upload build artifact to GitHub Pages
42
42
  uses: actions/upload-pages-artifact@v1
43
43
  with:
44
- path: ./dist/${{ env.PROJECT_NAME }}
44
+ path: ./dist/${{ env.PROJECT_NAME }}/browser
45
45
  - name: Deploy to GitHub Pages
46
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.1432-beta.0",
3
+ "version": "19.0.1433-beta.0",
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.2-beta.0",
15
+ "@igniteui/cli-core": "~14.3.3-beta.0",
16
16
  "typescript": "~5.5.4"
17
17
  }
18
18
  }