igniteui-cli 12.0.1 → 12.0.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.
@@ -60,7 +60,7 @@ command = {
60
60
  if (success && !argv.skipInstall) {
61
61
  cli_core_1.Util.log("Installing npm packages.");
62
62
  try {
63
- cli_core_1.Util.execSync("npm install --force --quiet");
63
+ cli_core_1.Util.execSync("npm install --quiet");
64
64
  cli_core_1.Util.log("npm packages installed.");
65
65
  }
66
66
  catch (error) {
@@ -125,9 +125,7 @@ class AngularTemplate {
125
125
  styles.push({ input: `${"ignite-ui/" + themeCSS}` }, { input: `${"ignite-ui/" + infragisticsCSS}` });
126
126
  updateFile = true;
127
127
  }
128
- for (let fileName of sourceFiles) {
129
- // strip .js file extension from bundle names, as webpack serves these files as .js.js
130
- fileName = fileName.includes(".js") ? fileName.replace(".js", "") : fileName;
128
+ for (const fileName of sourceFiles) {
131
129
  if (!scripts.find(x => x.bundleName === fileName)) {
132
130
  scripts.push({
133
131
  bundleName: fileName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-cli",
3
- "version": "12.0.1",
3
+ "version": "12.0.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": "~16.0.1201",
76
- "@igniteui/cli-core": "~12.0.1",
75
+ "@igniteui/angular-templates": "~16.0.1202",
76
+ "@igniteui/cli-core": "~12.0.2",
77
77
  "chalk": "^2.3.2",
78
78
  "fs-extra": "^3.0.1",
79
79
  "glob": "^7.1.2",
@@ -10,35 +10,35 @@
10
10
  },
11
11
  "private": true,
12
12
  "dependencies": {
13
- "@angular/animations": "~14.1.0",
14
- "@angular/common": "~14.1.0",
15
- "@angular/compiler": "~14.1.0",
16
- "@angular/core": "~14.1.0",
17
- "@angular/forms": "~14.1.0",
18
- "@angular/platform-browser": "~14.1.0",
19
- "@angular/platform-browser-dynamic": "~14.1.0",
20
- "@angular/router": "~14.1.0",
13
+ "@angular/animations": "~16.0.0",
14
+ "@angular/common": "~16.0.0",
15
+ "@angular/compiler": "~16.0.0",
16
+ "@angular/core": "~16.0.0",
17
+ "@angular/forms": "~16.0.0",
18
+ "@angular/platform-browser": "~16.0.0",
19
+ "@angular/platform-browser-dynamic": "~16.0.0",
20
+ "@angular/router": "~16.0.0",
21
21
  "jquery": ">=1.9.1",
22
22
  "jquery-ui": ">=1.10.5",
23
- "igniteui-angular-wrappers": "~14.1.0",
24
- "ignite-ui": "~21.2",
25
- "rxjs": "~7.5.0",
23
+ "igniteui-angular-wrappers": "~16.0.0",
24
+ "ignite-ui": "~22.2",
25
+ "rxjs": "~7.8.0",
26
26
  "tslib": "^2.3.0",
27
- "zone.js": "~0.11.4"
27
+ "zone.js": "~0.13.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@angular-devkit/build-angular": "~14.1.0",
31
- "@angular/cli": "~14.1.0",
32
- "@angular/compiler-cli": "~14.1.0",
33
- "@types/jasmine": "~4.0.0",
34
- "@types/node": "^12.11.1",
30
+ "@angular-devkit/build-angular": "~16.0.0",
31
+ "@angular/cli": "~16.0.0",
32
+ "@angular/compiler-cli": "~16.0.0",
33
+ "@types/jasmine": "~4.3.0",
34
+ "@types/node": "^18.16.0",
35
35
  "igniteui-cli": "^$(cliVersion)",
36
- "jasmine-core": "~4.1.0",
37
- "karma": "~6.3.0",
38
- "karma-chrome-launcher": "~3.1.0",
36
+ "jasmine-core": "~4.6.0",
37
+ "karma": "~6.4.0",
38
+ "karma-chrome-launcher": "~3.2.0",
39
39
  "karma-coverage": "~2.2.0",
40
- "karma-jasmine": "~5.0.0",
41
- "karma-jasmine-html-reporter": "~1.7.0",
42
- "typescript": "~4.7.2"
40
+ "karma-jasmine": "~5.1.0",
41
+ "karma-jasmine-html-reporter": "~2.0.0",
42
+ "typescript": "~5.0.4"
43
43
  }
44
44
  }
@@ -14,10 +14,10 @@
14
14
  "experimentalDecorators": true,
15
15
  "moduleResolution": "node",
16
16
  "importHelpers": true,
17
- "target": "es2020",
18
- "module": "es2020",
17
+ "target": "es2022",
18
+ "module": "es2022",
19
19
  "lib": [
20
- "es2020",
20
+ "es2022",
21
21
  "dom"
22
22
  ]
23
23
  },
@@ -3,7 +3,7 @@ import { customElement } from 'lit/decorators.js';
3
3
  import {
4
4
  EditModeType,
5
5
  GridActivationMode,
6
- DataGridSelectionMode,
6
+ GridSelectionMode,
7
7
  IgcDataGridComponent,
8
8
  IgcDataGridModule,
9
9
  IgcGridCellValueChangingEventArgs,
@@ -193,7 +193,7 @@ export default class $(ClassName) extends LitElement {
193
193
  if (grid !== null) {
194
194
  grid.dataSource = this.data;
195
195
  grid.activationMode = GridActivationMode.Cell;
196
- grid.selectionMode = DataGridSelectionMode.SingleCell;
196
+ grid.selectionMode = GridSelectionMode.SingleCell;
197
197
  grid.editMode = EditModeType.Cell;
198
198
  grid.cellValueChanging = onCellValueChanging;
199
199
  }