Skip to content

Commit 1764c59

Browse files
SahusoftSahusoft
authored andcommitted
Fixed Directory Structure and minor changes
1 parent 5978ff9 commit 1764c59

35 files changed

+133
-3579
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ build/Release
2323
# Commenting this out is preferred by some people, see
2424
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
2525
node_modules/
26-
app/node_modules/
2726

2827
# Users Environment Variables
2928
.lock-wscript

client/app.module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var router_1 = require("@angular/router");
1212
var app_routing_1 = require("./app.routing");
1313
var app_component_1 = require("./app.component");
1414
var app_routing_2 = require("./app.routing");
15-
var index_1 = require("./nickname/index");
15+
var index_1 = require("./nickname-component/index");
1616
var index_2 = require("./chat-component/index");
1717
// import { NicknameComponent } from './app.nicknameComponent';
1818
var AppModule = (function () {

client/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { AppComponent } from "./app.component";
99

1010
import { routing, appRoutingProviders } from "./app.routing";
1111

12-
import { NickNameModule } from "./nickname/index";
12+
import { NickNameModule } from "./nickName-component/index";
1313
import { ChatModule } from "./chat-component/index";
1414

1515
// import { NicknameComponent } from './app.nicknameComponent';

client/app.routing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22
var router_1 = require("@angular/router");
3-
var index_1 = require("./nickname/index");
3+
var index_1 = require("./nickname-component/index");
44
var index_2 = require("./chat-component/index");
55
exports.appRoutes = index_1.nickNameRoutes.concat(index_2.chatComponentRoutes);
66
exports.appRoutingProviders = [router_1.provideRouter(exports.appRoutes)];

client/app.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Routes, RouterModule, provideRouter } from "@angular/router";
22

3-
import { nickNameRoutes } from "./nickname/index";
3+
import { nickNameRoutes } from "./nickName-component/index";
44

55
import { chatComponentRoutes } from "./chat-component/index";
66

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)