Skip to content

Commit 35e3aac

Browse files
Richard Solomoutoddmotto
Richard Solomou
authored andcommitted
Updated missed imports to new module naming convention (#126)
1 parent 569bdc4 commit 35e3aac

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ The Common module is the container reference for all application specific compon
133133

134134
```js
135135
import angular from 'angular';
136-
import NavModule from './nav';
137-
import FooterModule from './footer';
136+
import NavModule from './nav/nav.module';
137+
import FooterModule from './footer/footer.module';
138138

139139
const CommonModule = angular
140140
.module('app.common', [

i18n/es.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Un `Component module` es el contenedor referencia para todos los componentes reu
106106

107107
```js
108108
import angular from 'angular';
109-
import CalendarModule from './calendar/calendar';
110-
import EventsModule from './events/events';
109+
import CalendarModule from './calendar/calendar.module';
110+
import EventsModule from './events/events.module';
111111

112112
const ComponentsModule = angular
113113
.module('app.components', [
@@ -588,7 +588,7 @@ Aquí hay un ejemplo utilizando una constante con una `Arrow function` y `expres
588588

589589
```js
590590
/* ----- todo/todo-autofocus.directive.js ----- */
591-
import angular from '../../angular';
591+
import angular from 'angular';
592592

593593
const TodoAutoFocus = ($timeout) => ({
594594
restrict: 'A',
@@ -624,7 +624,7 @@ O utilizando una clases ES2015 (toma en cuenta la llamada manual de `new TodoAut
624624

625625
```js
626626
/* ----- todo/todo-autofocus.directive.js ----- */
627-
import angular from '../../angular';
627+
import angular from 'angular';
628628

629629
class TodoAutoFocus {
630630
constructor($timeout) {

i18n/fr-fr.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Un module component contient les références pour tous les components réutilis
106106

107107
```js
108108
import angular from 'angular';
109-
import CalendarModule from './calendar';
110-
import EventsModule from './events';
109+
import CalendarModule from './calendar/calendar.module';
110+
import EventsModule from './events/events.module';
111111

112112
const ComponentsModule = angular
113113
.module('app.components', [

i18n/id.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Sebuah modul Komponen adalah suatu referensi kontainer untuk semua komponen yang
106106

107107
```js
108108
import angular from 'angular';
109-
import CalendarModule from './calendar';
110-
import EventsModule from './events';
109+
import CalendarModule from './calendar/calendar.module';
110+
import EventsModule from './events/events.module';
111111

112112
const ComponentsModule = angular
113113
.module('app.components', [

i18n/pt-pt.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ Um component module é a aquele que contém referência para todos os componente
105105

106106
```js
107107
import angular from 'angular';
108-
import CalendarModule from './calendar';
109-
import EventsModule from './events';
108+
import CalendarModule from './calendar/calendar.module';
109+
import EventsModule from './events/events.module';
110110

111111
const ComponentsModule = angular
112112
.module('app.components', [

i18n/ru-ru.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ export default AppModule;
107107

108108
```js
109109
import angular from 'angular';
110-
import CalendarModule from './calendar';
111-
import EventsModule from './events';
110+
import CalendarModule from './calendar/calendar.module';
111+
import EventsModule from './events/events.module';
112112

113113
const ComponentsModule = angular
114114
.module('app.components', [

i18n/zh-cn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ export default AppModule;
112112

113113
```js
114114
import angular from 'angular';
115-
import CalendarModule from './calendar';
116-
import EventsModule from './events';
115+
import CalendarModule from './calendar/calendar.module';
116+
import EventsModule from './events/events.module';
117117

118118
const ComponentsModule = angular
119119
.module('app.components', [

0 commit comments

Comments
 (0)