Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igniteui-cli",
"version": "14.3.1",
"version": "14.3.2-beta.0",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
Expand Down Expand Up @@ -78,8 +78,8 @@
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~19.0.1431",
"@igniteui/cli-core": "~14.3.1",
"@igniteui/angular-templates": "~19.0.1432-beta.0",
"@igniteui/cli-core": "~14.3.2-beta.0",
"@inquirer/prompts": "^5.4.0",
"@types/yargs": "^17.0.33",
"chalk": "^5.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: $(yamlGenerateDeploymentScript) == true

runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Copy Resources to dist
run: mkdir -p ./dist/assets && cp -R ./src/assets/* ./dist/assets/
- name: SPA routing handling
run: cp .dist/index.html .dist/404.html
run: cp ./dist/index.html ./dist/404.html
- name: Upload build artifact to GitHub Pages
uses: actions/upload-pages-artifact@v1
with:
Expand Down
3 changes: 1 addition & 2 deletions packages/cli/templates/react/igr-ts/projects/_base/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ export class BaseIgrTsProject implements ProjectTemplate {
"dot": ".",
"path": name,
"projectTemplate": this.id,
"yamlDefaultBranch": this.id === "base" ? "<%=yaml-default-branch%>" : "main",
"yamlGenerateDeploymentScript": "<%=yaml-generate-deployment-script%>"
"yamlDefaultBranch": this.id === "base" ? "<%=yaml-default-branch%>" : "main"
};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: $(yamlGenerateDeploymentScript) == true

runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Update href Paths for ig-theme.css
run: find ./dist -type f -exec sed -i "s|href=\"../../ig-theme.css\"|href=\"../../${{ github.event.repository.name }}/ig-theme.css\"|g" {} +
- name: SPA routing handling
run: cp .dist/index.html .dist/404.html
run: cp ./dist/index.html ./dist/404.html
- name: Upload build artifact to GitHub Pages
uses: actions/upload-pages-artifact@v1
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ export class BaseIgcProject implements ProjectTemplate {
dot: ".",
path: name,
projectTemplate: this.id,
yamlDefaultBranch: this.id === "base" ? "<%=yaml-default-branch%>" : "main",
yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>"
yamlDefaultBranch: this.id === "base" ? "<%=yaml-default-branch%>" : "main"
};

return config;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/cli-core",
"version": "14.3.1",
"version": "14.3.2-beta.0",
"description": "Base types and functionality for Ignite UI CLI",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: <%=yamlGenerateDeploymentScript%> == true

runs-on: ubuntu-latest

permissions:
Expand Down
3 changes: 1 addition & 2 deletions packages/igx-templates/igx-ts-legacy/projects/_base/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ $app-palette: palette($primary, $secondary, $surface);
path: name,
projectTemplate: this.id,
yamlDefaultBranch: "<%=yaml-default-branch%>", // the placeholder will be evaluated by CodeGen
ApplicationTitle: "<%=ApplicationTitle%>", // the placeholder will be evaluated by CodeGen
yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>" // the placeholder will be evaluated by CodeGen
ApplicationTitle: "<%=ApplicationTitle%>" // the placeholder will be evaluated by CodeGen
};

switch (theme) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: <%=yamlGenerateDeploymentScript%> == true

runs-on: ubuntu-latest

permissions:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: <%=yamlGenerateDeploymentScript%> == true

runs-on: ubuntu-latest

permissions:
Expand Down
3 changes: 1 addition & 2 deletions packages/igx-templates/igx-ts/projects/_base/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ $app-palette: palette($primary, $secondary, $surface);
projectTemplate: this.id,
igxPackage: NPM_ANGULAR,
yamlDefaultBranch: "<%=yaml-default-branch%>", // the placeholder will be evaluated by CodeGen
ApplicationTitle: "<%=ApplicationTitle%>", // the placeholder will be evaluated by CodeGen
yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>" // the placeholder will be evaluated by CodeGen
ApplicationTitle: "<%=ApplicationTitle%>" // the placeholder will be evaluated by CodeGen
};

switch (theme) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-and-deploy:
if: <%=yamlGenerateDeploymentScript%> == true

runs-on: ubuntu-latest

permissions:
Expand Down
4 changes: 2 additions & 2 deletions packages/igx-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-templates",
"version": "19.0.1431",
"version": "19.0.1432-beta.0",
"description": "Templates for Ignite UI for Angular projects and components",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"author": "Infragistics",
"license": "MIT",
"dependencies": {
"@igniteui/cli-core": "~14.3.1",
"@igniteui/cli-core": "~14.3.2-beta.0",
"typescript": "~5.5.4"
}
}
6 changes: 3 additions & 3 deletions packages/ng-schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-schematics",
"version": "19.0.1431",
"version": "19.0.1432-beta.0",
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
"repository": {
"type": "git",
Expand All @@ -20,8 +20,8 @@
"dependencies": {
"@angular-devkit/core": "^19.0.0",
"@angular-devkit/schematics": "^19.0.0",
"@igniteui/angular-templates": "~19.0.1431",
"@igniteui/cli-core": "~14.3.1",
"@igniteui/angular-templates": "~19.0.1432-beta.0",
"@igniteui/cli-core": "~14.3.2-beta.0",
"@schematics/angular": "~19.0.0",
"rxjs": "^7.8.1",
"minimatch": "^10.0.1"
Expand Down
Loading