Skip to content

Commit

Permalink
Fix file name casing (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyexeption authored Dec 12, 2023
1 parent cf493de commit e8335dd
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igniteui-cli",
"version": "12.1.0-beta.4",
"version": "13.1.0-beta.2",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
Expand Down Expand Up @@ -78,8 +78,8 @@
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~17.0.1210-beta.4",
"@igniteui/cli-core": "~12.1.0-beta.4",
"@igniteui/angular-templates": "~17.0.1310-beta.2",
"@igniteui/cli-core": "~13.1.0-beta.2",
"chalk": "^2.3.2",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from 'vitest';
import { render } from '@testing-library/react';
import App from './App';
import App from './app';

test('renders without crashing', () => {
const wrapper = render(<App />);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ body {
-moz-osx-font-smoothing: grayscale;
}

html, body, #root {
height: 100%;
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import ReactDOM from 'react-dom/client';
import { createBrowserRouter, RouterProvider } from "react-router-dom";
import { routes } from "./app/app-routes";
import App from './app/App';
import App from './app/app';
import 'react-app-polyfill/ie11';
import './index.css';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Outlet } from "react-router-dom";
import { routes } from './app-routes';
import NavigationHeader from "../components/navigation-header";
import "./App.css";
import "./app.css";

export default function App() {
const name = "$(name)";
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/cli-core",
"version": "12.1.0-beta.4",
"version": "13.1.0-beta.2",
"description": "Base types and functionality for Ignite UI CLI",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/igx-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-templates",
"version": "17.0.1210-beta.4",
"version": "17.0.1310-beta.2",
"description": "Templates for Ignite UI for Angular projects and components",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"author": "Infragistics",
"license": "MIT",
"dependencies": {
"@igniteui/cli-core": "~12.1.0-beta.4",
"@igniteui/cli-core": "~13.1.0-beta.2",
"typescript": "~4.7.2"
}
}
6 changes: 3 additions & 3 deletions packages/ng-schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-schematics",
"version": "17.0.1210-beta.4",
"version": "17.0.1310-beta.2",
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
"repository": {
"type": "git",
Expand All @@ -20,8 +20,8 @@
"dependencies": {
"@angular-devkit/core": "~14.0.0",
"@angular-devkit/schematics": "~14.0.0",
"@igniteui/angular-templates": "~17.0.1210-beta.4",
"@igniteui/cli-core": "~12.1.0-beta.4",
"@igniteui/angular-templates": "~17.0.1310-beta.2",
"@igniteui/cli-core": "~13.1.0-beta.2",
"@schematics/angular": "~14.0.0",
"rxjs": "^6.6.3"
},
Expand Down

0 comments on commit e8335dd

Please sign in to comment.