igniteui-cli 11.0.2 → 11.1.0-alpha.0

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": "11.0.2",
3
+ "version": "11.1.0-alpha.0",
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": "~15.0.1102",
76
- "@igniteui/cli-core": "~11.0.2",
75
+ "@igniteui/angular-templates": "~15.0.1110-alpha.0",
76
+ "@igniteui/cli-core": "~11.1.0-alpha.0",
77
77
  "chalk": "^2.3.2",
78
78
  "fs-extra": "^3.0.1",
79
79
  "glob": "^7.1.2",
@@ -1,5 +1,5 @@
1
1
  import { Route } from '@vaadin/router';
2
- import './not-found/not-found.js';
2
+ import './not-found/not-found.ts';
3
3
 
4
4
  export const routes: Route[] = [
5
5
  // The fallback route should always be after other alternatives.
@@ -1,7 +1,7 @@
1
1
  import { Router } from '@vaadin/router';
2
2
  import { css, html, LitElement } from 'lit';
3
- import { customElement } from 'lit/decorators.js';
4
- import { routes } from './app-routing.js';
3
+ import { customElement } from 'lit/decorators.ts';
4
+ import { routes } from './app-routing.ts';
5
5
 
6
6
  @customElement('app-root')
7
7
  export class App extends LitElement {
@@ -1,5 +1,5 @@
1
1
  import { html, LitElement } from 'lit';
2
- import { customElement } from 'lit/decorators.js';
2
+ import { customElement } from 'lit/decorators.ts';
3
3
 
4
4
  @customElement('app-not-found')
5
5
  export default class NotFound extends LitElement {
@@ -1,2 +1,2 @@
1
- import './app/app.js';
2
- import './app/app-routing.js';
1
+ import './app/app.ts';
2
+ import './app/app-routing.ts';
@@ -1,6 +1,6 @@
1
1
  import { Route } from '@vaadin/router';
2
- import './home/home.js';
3
- import './not-found/not-found.js';
2
+ import './home/home.ts';
3
+ import './not-found/not-found.ts';
4
4
 
5
5
  export const routes: Route[] = [
6
6
  { path: '/', component: 'app-home', name: 'Home' },
@@ -1,5 +1,5 @@
1
1
  import { expect } from '@open-wc/testing';
2
- import { HomeComponent } from './home.js';
2
+ import { HomeComponent } from './home.ts';
3
3
 
4
4
  describe('HomeComponent', () => {
5
5
  it('<my-element> is an instance of MyElement', async () => {
@@ -1,5 +1,5 @@
1
1
  import { html, css, LitElement } from 'lit';
2
- import { customElement } from 'lit/decorators.js';
2
+ import { customElement } from 'lit/decorators.ts';
3
3
 
4
4
  @customElement('app-home')
5
5
  export class HomeComponent extends LitElement {