@igniteui/angular-templates 15.1.1112-alpha.0 → 15.1.1112-alpha.1

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.
@@ -0,0 +1,14 @@
1
+ import { ProjectTemplate } from "@igniteui/cli-core";
2
+ import { BaseIgxProject } from "../_base";
3
+ export declare class BasePageTemplate extends BaseIgxProject implements ProjectTemplate {
4
+ id: string;
5
+ name: string;
6
+ description: string;
7
+ dependencies: string[];
8
+ framework: string;
9
+ projectType: string;
10
+ hasExtraConfiguration: boolean;
11
+ get templatePaths(): string[];
12
+ }
13
+ declare const _default: BasePageTemplate;
14
+ export default _default;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BasePageTemplate = void 0;
4
+ const path = require("path");
5
+ const _base_1 = require("../_base");
6
+ class BasePageTemplate extends _base_1.BaseIgxProject {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.id = "base";
10
+ this.name = "Base Project";
11
+ this.description = "Project structure with routing";
12
+ this.dependencies = [];
13
+ this.framework = "angular";
14
+ this.projectType = "igx-ts";
15
+ this.hasExtraConfiguration = false;
16
+ }
17
+ get templatePaths() {
18
+ return [...super.templatePaths, path.join(__dirname, "files")];
19
+ }
20
+ }
21
+ exports.BasePageTemplate = BasePageTemplate;
22
+ exports.default = new BasePageTemplate();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "15.1.1112-alpha.0",
3
+ "version": "15.1.1112-alpha.1",
4
4
  "description": "Templates for Ignite UI for Angular projects and components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,7 @@
12
12
  "author": "Infragistics",
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@igniteui/cli-core": "~11.1.2-alpha.0",
15
+ "@igniteui/cli-core": "~11.1.2-alpha.1",
16
16
  "typescript": "~4.7.2"
17
17
  }
18
18
  }