igniteui-cli 14.2.3-beta.1 → 14.2.3

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-beta.1",
3
+ "version": "14.2.3",
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-beta.1",
76
- "@igniteui/cli-core": "~14.2.3-beta.1",
75
+ "@igniteui/angular-templates": "~18.2.1423",
76
+ "@igniteui/cli-core": "~14.2.3",
77
77
  "@inquirer/prompts": "^5.4.0",
78
78
  "@types/yargs": "^17.0.33",
79
79
  "chalk": "^5.3.0",
@@ -8,7 +8,8 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
- if: $(yamlGenerateDeploymentScript) == true
11
+ # Deactivate the workflow. Will be changed when AB is ready
12
+ if: false
12
13
  runs-on: ubuntu-latest
13
14
 
14
15
  permissions:
@@ -4,7 +4,6 @@ import react from '@vitejs/plugin-react'
4
4
 
5
5
  // https://vitejs.dev/config/
6
6
  export default defineConfig({
7
- define: process.env.VITEST ? {} : { global: 'window' },
8
7
  plugins: [react()],
9
8
  test: {
10
9
  globals: true,
@@ -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
  }
@@ -8,7 +8,8 @@ on:
8
8
 
9
9
  jobs:
10
10
  build-and-deploy:
11
- if: $(yamlGenerateDeploymentScript) == true
11
+ # Deactivate the workflow. Will be changed when AB is ready
12
+ if: false
12
13
  runs-on: ubuntu-latest
13
14
 
14
15
  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
  }