Skip to content

Commit 3844ceb

Browse files
authored
Improve structure + rename index.ts to index.js (#42)
- remove components and assets folder - remove unnecessary imports - rename index.ts to index.js - remove some unnecessary files - remove unneeded dependencies
1 parent 8e7a741 commit 3844ceb

File tree

66 files changed

+14
-601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+14
-601
lines changed
File renamed without changes.

package-lock.json

Lines changed: 0 additions & 514 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
"babel-preset-es2015": "^6.22.0",
5858
"codelyzer": "^3.0.1",
5959
"copy-webpack-plugin": "^4.0.0",
60-
"core-js": "^2.4.1",
6160
"css-loader": "^0.28.0",
6261
"extract-text-webpack-plugin": "^3.0.0",
6362
"file-loader": "^0.11.1",
@@ -83,15 +82,13 @@
8382
"karma-webpack": "^2.0.3",
8483
"less": "^2.7.1",
8584
"less-loader": "^4.0.3",
86-
"node-sass": "^4.5.0",
8785
"phantomjs-prebuilt": "^2.1.14",
8886
"protractor": "^5.1.1",
8987
"raw-loader": "0.5.1",
9088
"reflect-metadata": "^0.1.9",
9189
"remap-istanbul": "^0.9.1",
9290
"rimraf": "^2.6.1",
9391
"rxjs": "^5.1.1",
94-
"sass-loader": "^6.0.0",
9592
"style-loader": "^0.18.1",
9693
"to-string-loader": "^1.1.5",
9794
"ts-helpers": "^1.1.2",

src/assets/.gitkeep

Whitespace-only changes.

src/components/components/index.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/components/index.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
* Created by marc on 29.12.16.
33
*/
44

5-
export {WizardModule} from './wizard.module';
6-
export * from './components';
7-
export * from './directives';
8-
export * from './navigation';
9-
export * from './util';
10-
5+
export {WizardComponent} from './wizard.component';
6+
export {WizardStepComponent} from './wizard-step.component';
7+
export {WizardNavigationBarComponent} from './wizard-navigation-bar.component';
8+
export {WizardCompletionStepComponent} from './wizard-completion-step.component';

src/components/components/wizard-completion-step.component.css renamed to src/components/wizard-completion-step.component.css

File renamed without changes.

src/components/components/wizard-completion-step.component.html renamed to src/components/wizard-completion-step.component.html

File renamed without changes.

src/components/components/wizard-completion-step.component.spec.ts renamed to src/components/wizard-completion-step.component.spec.ts

File renamed without changes.

src/components/components/wizard-completion-step.component.ts renamed to src/components/wizard-completion-step.component.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@
22
* Created by marc on 20.05.17.
33
*/
44

5-
import {Component, ContentChild, EventEmitter, forwardRef, HostBinding, Inject, Input, Output} from '@angular/core';
6-
import {MovingDirection} from '../util/moving-direction.enum';
7-
import {WizardComponent} from './wizard.component';
5+
import {Component, forwardRef} from '@angular/core';
86
import {WizardStep} from '../util/wizard-step.interface';
9-
import {WizardStepTitleDirective} from '../directives/wizard-step-title.directive';
107
import {WizardCompletionStep} from '../util/wizard-completion-step.interface';
118

129
/**

0 commit comments

Comments
 (0)