@igniteui/angular-templates 19.0.1431 → 19.0.1432

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.
@@ -7,7 +7,7 @@ on:
7
7
 
8
8
  jobs:
9
9
  build-and-deploy:
10
- if: <%=yamlGenerateDeploymentScript%> == true
10
+
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  permissions:
@@ -100,8 +100,7 @@ $app-palette: palette($primary, $secondary, $surface);
100
100
  projectTemplate: this.id,
101
101
  igxPackage: cli_core_1.NPM_ANGULAR,
102
102
  yamlDefaultBranch: "<%=yaml-default-branch%>", // the placeholder will be evaluated by CodeGen
103
- ApplicationTitle: "<%=ApplicationTitle%>", // the placeholder will be evaluated by CodeGen
104
- yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>" // the placeholder will be evaluated by CodeGen
103
+ ApplicationTitle: "<%=ApplicationTitle%>" // the placeholder will be evaluated by CodeGen
105
104
  };
106
105
  switch (theme) {
107
106
  case "Custom":
@@ -7,7 +7,7 @@ on:
7
7
 
8
8
  jobs:
9
9
  build-and-deploy:
10
- if: <%=yamlGenerateDeploymentScript%> == true
10
+
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  permissions:
@@ -7,7 +7,7 @@ on:
7
7
 
8
8
  jobs:
9
9
  build-and-deploy:
10
- if: <%=yamlGenerateDeploymentScript%> == true
10
+
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  permissions:
@@ -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 { }
@@ -99,8 +99,7 @@ $app-palette: palette($primary, $secondary, $surface);
99
99
  path: name,
100
100
  projectTemplate: this.id,
101
101
  yamlDefaultBranch: "<%=yaml-default-branch%>", // the placeholder will be evaluated by CodeGen
102
- ApplicationTitle: "<%=ApplicationTitle%>", // the placeholder will be evaluated by CodeGen
103
- yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>" // the placeholder will be evaluated by CodeGen
102
+ ApplicationTitle: "<%=ApplicationTitle%>" // the placeholder will be evaluated by CodeGen
104
103
  };
105
104
  switch (theme) {
106
105
  case "Custom":
@@ -7,7 +7,7 @@ on:
7
7
 
8
8
  jobs:
9
9
  build-and-deploy:
10
- if: <%=yamlGenerateDeploymentScript%> == true
10
+
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  permissions:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "19.0.1431",
3
+ "version": "19.0.1432",
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.1",
15
+ "@igniteui/cli-core": "~14.3.2",
16
16
  "typescript": "~5.5.4"
17
17
  }
18
18
  }