igniteui-cli 14.2.3 → 14.2.4-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.2.3",
3
+ "version": "14.2.4-beta.0",
4
4
  "description": "CLI tool for creating Ignite UI projects",
5
5
  "keywords": [
6
6
  "CLI",
@@ -72,8 +72,8 @@
72
72
  "all": true
73
73
  },
74
74
  "dependencies": {
75
- "@igniteui/angular-templates": "~18.2.1423",
76
- "@igniteui/cli-core": "~14.2.3",
75
+ "@igniteui/angular-templates": "~18.2.1424-beta.0",
76
+ "@igniteui/cli-core": "~14.2.4-beta.0",
77
77
  "@inquirer/prompts": "^5.4.0",
78
78
  "@types/yargs": "^17.0.33",
79
79
  "chalk": "^5.3.0",
@@ -8,14 +8,17 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
- # Deactivate the workflow. Will be changed when AB is ready
12
- if: false
11
+ if: $(yamlGenerateDeploymentScript) == true
13
12
  runs-on: ubuntu-latest
14
13
 
15
14
  permissions:
16
15
  pages: write
17
16
  id-token: write
18
17
 
18
+ environment:
19
+ name: github-pages
20
+ url: ${{ steps.deployment.outputs.page_url }}
21
+
19
22
  strategy:
20
23
  matrix:
21
24
  node-version: [22.x]
@@ -26,5 +26,6 @@ export declare class BaseIgrTsProject implements ProjectTemplate {
26
26
  path: string;
27
27
  projectTemplate: string;
28
28
  yamlDefaultBranch: string;
29
+ yamlGenerateDeploymentScript: string;
29
30
  };
30
31
  }
@@ -75,7 +75,8 @@ class BaseIgrTsProject {
75
75
  "dot": ".",
76
76
  "path": name,
77
77
  "projectTemplate": this.id,
78
- "yamlDefaultBranch": this.id === "base" ? "<%=yaml-default-branch%>" : "main"
78
+ "yamlDefaultBranch": this.id === "base" ? "<%=yaml-default-branch%>" : "main",
79
+ "yamlGenerateDeploymentScript": "<%=yaml-generate-deployment-script%>"
79
80
  };
80
81
  }
81
82
  }
@@ -8,14 +8,17 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
- # Deactivate the workflow. Will be changed when AB is ready
12
- if: false
11
+ if: $(yamlGenerateDeploymentScript) == true
13
12
  runs-on: ubuntu-latest
14
13
 
15
14
  permissions:
16
15
  pages: write
17
16
  id-token: write
18
17
 
18
+ environment:
19
+ name: github-pages
20
+ url: ${{ steps.deployment.outputs.page_url }}
21
+
19
22
  strategy:
20
23
  matrix:
21
24
  node-version: [22.x]
@@ -72,7 +72,8 @@ class BaseIgcProject {
72
72
  dot: ".",
73
73
  path: name,
74
74
  projectTemplate: this.id,
75
- yamlDefaultBranch: this.id === "base" ? "<%=yaml-default-branch%>" : "main"
75
+ yamlDefaultBranch: this.id === "base" ? "<%=yaml-default-branch%>" : "main",
76
+ yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>"
76
77
  };
77
78
  return config;
78
79
  }