igniteui-cli 14.3.1 → 14.3.2

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",
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",
76
+ "@igniteui/cli-core": "~14.3.2",
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:
@@ -38,7 +38,7 @@ jobs:
38
38
  - name: Copy Resources to dist
39
39
  run: mkdir -p ./dist/assets && cp -R ./src/assets/* ./dist/assets/
40
40
  - name: SPA routing handling
41
- run: cp .dist/index.html .dist/404.html
41
+ run: cp ./dist/index.html ./dist/404.html
42
42
  - name: Upload build artifact to GitHub Pages
43
43
  uses: actions/upload-pages-artifact@v1
44
44
  with:
@@ -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:
@@ -40,7 +40,7 @@ jobs:
40
40
  - name: Update href Paths for ig-theme.css
41
41
  run: find ./dist -type f -exec sed -i "s|href=\"../../ig-theme.css\"|href=\"../../${{ github.event.repository.name }}/ig-theme.css\"|g" {} +
42
42
  - name: SPA routing handling
43
- run: cp .dist/index.html .dist/404.html
43
+ run: cp ./dist/index.html ./dist/404.html
44
44
  - name: Upload build artifact to GitHub Pages
45
45
  uses: actions/upload-pages-artifact@v1
46
46
  with:
@@ -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
  }