igniteui-cli 14.3.1 → 14.3.2-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.1",
3
+ "version": "14.3.2-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": "~19.0.1431",
76
- "@igniteui/cli-core": "~14.3.1",
75
+ "@igniteui/angular-templates": "~19.0.1432-beta.0",
76
+ "@igniteui/cli-core": "~14.3.2-beta.0",
77
77
  "@inquirer/prompts": "^5.4.0",
78
78
  "@types/yargs": "^17.0.33",
79
79
  "chalk": "^5.3.0",
@@ -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:
@@ -26,6 +26,5 @@ export declare class BaseIgrTsProject implements ProjectTemplate {
26
26
  path: string;
27
27
  projectTemplate: string;
28
28
  yamlDefaultBranch: string;
29
- yamlGenerateDeploymentScript: string;
30
29
  };
31
30
  }
@@ -75,8 +75,7 @@ class BaseIgrTsProject {
75
75
  "dot": ".",
76
76
  "path": name,
77
77
  "projectTemplate": this.id,
78
- "yamlDefaultBranch": this.id === "base" ? "<%=yaml-default-branch%>" : "main",
79
- "yamlGenerateDeploymentScript": "<%=yaml-generate-deployment-script%>"
78
+ "yamlDefaultBranch": this.id === "base" ? "<%=yaml-default-branch%>" : "main"
80
79
  };
81
80
  }
82
81
  }
@@ -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:
@@ -72,8 +72,7 @@ class BaseIgcProject {
72
72
  dot: ".",
73
73
  path: name,
74
74
  projectTemplate: this.id,
75
- yamlDefaultBranch: this.id === "base" ? "<%=yaml-default-branch%>" : "main",
76
- yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>"
75
+ yamlDefaultBranch: this.id === "base" ? "<%=yaml-default-branch%>" : "main"
77
76
  };
78
77
  return config;
79
78
  }