Skip to content

Commit 681065d

Browse files
author
Jarosław Żołnowski
authored
chore: bump dependencies to the latest version (#3)
Also switch from LTS AngularJS Material to XLTS for AngularJS Material. --------- Signed-off-by: Jaroslaw Zolnowski <jarek@devintent.com>
1 parent 250c7ee commit 681065d

File tree

7 files changed

+768
-780
lines changed

7 files changed

+768
-780
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# XLTS for AngularJS + AngularJS Material + Vite
1+
# XLTS for AngularJS + XLTS for AngularJS Material + Vite
22

33
[![Semver](https://img.shields.io/github/package-json/v/xlts-dev/angularjs-material-vite)](https://github.com/xlts-dev/angularjs-material-vite)
44
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
@@ -9,7 +9,7 @@
99
#### Includes
1010

1111
- [XLTS for AngularJS](https://xlts.dev/angularjs) with component-based architecture
12-
- [AngularJS Material](https://material.angularjs.org/latest/)
12+
- [XLTS for AngularJS Material](https://material.angularjs.xlts.dev/latest)
1313
- [Sass](https://sass-lang.com/)
1414
- [Vite](https://vitejs.dev/) (as modern zero-config Webpack alternative)
1515
- [ESLint](https://eslint.org/)

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;

app/components/page-home/page-home.component.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ const pageHomeComponent = {
55
bindings: {},
66
template: `
77
<md-content class="page-home">
8-
<h2 data-testid="title" class="md-display-1">Modern starter for AngularJS + Angular Material</h2>
8+
<h2 data-testid="title" class="md-display-1">
9+
Modern starter for XLTS for AngularJS + XLTS for AngularJS Material + Vite
10+
</h2>
911
<img
1012
data-testid="hero-image"
1113
class="hero-img"
@@ -14,8 +16,8 @@ const pageHomeComponent = {
1416
<h3 class="md-title">FEATURING:</h3>
1517
<div layout="column" layout-align="center center">
1618
<ul data-testid="featuring" class="md-headline" layout="column" layout-align="start start">
17-
<li><a href="https://angularjs.org/">AngularJS</a> (1.8.2)</li>
18-
<li><a href="https://material.angularjs.org/latest/">Angular Material</a></li>
19+
<li><a href="https://xlts.dev/angularjs">XLTS for AngularJS</a> (1.8.2)</li>
20+
<li><a href="https://material.angularjs.xlts.dev/latest">XLTS for AngularJS Material</a></li>
1921
<li><a href="https://sass-lang.com/">Sass</a></li>
2022
<li><a href="https://vitejs.dev/">Vite</a></li>
2123
<li><a href="https://eslint.org/">ESLint</a></li>
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)