@igniteui/angular-schematics 17.1.13113 → 17.1.13115

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/angular-schematics",
3
- "version": "17.1.13113",
3
+ "version": "17.1.13115",
4
4
  "description": "Ignite UI for Angular Schematics for ng new and ng generate",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,8 +22,8 @@
22
22
  "dependencies": {
23
23
  "@angular-devkit/core": "~14.0.0",
24
24
  "@angular-devkit/schematics": "~14.0.0",
25
- "@igniteui/angular-templates": "~17.1.13113",
26
- "@igniteui/cli-core": "~13.1.13",
25
+ "@igniteui/angular-templates": "~17.1.13115",
26
+ "@igniteui/cli-core": "~13.1.15",
27
27
  "@schematics/angular": "~14.0.0",
28
28
  "rxjs": "^6.6.3"
29
29
  },
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ // tslint:disable-next-line:no-implicit-dependencies
4
+ const cli_core_1 = require("@igniteui/cli-core");
5
+ function install() {
6
+ if (!!process.env.npm_config_global) {
7
+ cli_core_1.App.initialize("angular-cli");
8
+ cli_core_1.GoogleAnalytics.post({
9
+ t: "screenview",
10
+ cd: `install`
11
+ });
12
+ }
13
+ }
14
+ install();
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ // tslint:disable-next-line:no-implicit-dependencies
4
+ const cli_core_1 = require("@igniteui/cli-core");
5
+ function uninstall() {
6
+ if (!!process.env.npm_config_global) {
7
+ cli_core_1.App.initialize("angular-cli");
8
+ cli_core_1.GoogleAnalytics.post({
9
+ t: "screenview",
10
+ cd: `uninstall`
11
+ });
12
+ }
13
+ }
14
+ uninstall();