Skip to content

Commit 9c652f1

Browse files
committed
chore: bump dependencies to the latest version
1 parent a9339a6 commit 9c652f1

File tree

5 files changed

+4773
-1469
lines changed

5 files changed

+4773
-1469
lines changed

app/app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const appModule = angular
2121
$mdThemingProvider.theme('default').primaryPalette('brown').accentPalette('amber');
2222
},
2323
])
24-
2524
.component('app', AppComponent);
2625

2726
export default appModule;

app/components/navbar/navbar.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import navbarComponent from './navbar.component';
22

3-
const navbarModule = angular
4-
.module('navbar', [])
5-
6-
.component('navbar', navbarComponent).name;
3+
const navbarModule = angular.module('navbar', []).component('navbar', navbarComponent).name;
74

85
export default navbarModule;
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import pageHomeComponent from './page-home.component';
22

3-
const pageHomeModule = angular
4-
.module('pageHome', [])
5-
6-
.component('pageHome', pageHomeComponent).name;
3+
const pageHomeModule = angular.module('pageHome', []).component('pageHome', pageHomeComponent).name;
74

85
export default pageHomeModule;

0 commit comments

Comments
 (0)