-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(): update dependencies for angular and dev tools * chore(): update dependencies for commit hooks * chore(): update templates and readme * chore(): update serve port info * chore(): update serve host info, default page, and remaining dependencies * chore(): update copyright
- Loading branch information
Showing
15 changed files
with
1,637 additions
and
3,579 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.controller.js | ||
to: app/<%=path%>/<%=name%>/<%=name%>.controller.js | ||
--- | ||
'use strict'; | ||
|
||
class <%=h.changeCase.pascal(name)%>Controller { | ||
/* @ngInject */ | ||
constructor() { | ||
this.name = '<%=name%>'; | ||
} | ||
/* @ngInject */ | ||
constructor() { | ||
this.name = '<%=name%>'; | ||
} | ||
} | ||
|
||
export default <%=h.changeCase.pascal(name)%>Controller; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.html | ||
to: app/<%=path%>/<%=name%>/<%=name%>.html | ||
--- | ||
<div class="<%=name%>">{{ $ctrl.name }}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.module.js | ||
to: app/<%=path%>/<%=name%>/<%=name%>.module.js | ||
--- | ||
'use strict'; | ||
|
||
import <%=h.changeCase.camel(name)%>Component from './<%=name%>.component'; | ||
|
||
const <%=h.changeCase.camel(name)%>Module = angular.module('<%=h.changeCase.camel(name)%>', []) | ||
const <%=h.changeCase.camel(name)%>Module = angular | ||
.module('<%=h.changeCase.camel(name)%>', []) | ||
|
||
.component('<%=h.changeCase.camel(name)%>', <%=h.changeCase.camel(name)%>Component) | ||
|
||
.name; | ||
.component('<%=h.changeCase.camel(name)%>', <%=h.changeCase.camel(name)%>Component).name; | ||
|
||
export default <%=h.changeCase.camel(name)%>Module; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.scss | ||
to: app/<%=path%>/<%=name%>/<%=name%>.scss | ||
--- | ||
.<%=name%> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.spec.js | ||
to: app/<%=path%>/<%=name%>/<%=name%>.spec.js | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.module.js | ||
to: app/<%=path%>/<%=name%>/<%=name%>.module.js | ||
--- | ||
'use strict'; | ||
|
||
import <%=h.changeCase.pascal(name)%>Service from './<%=name%>.service'; | ||
|
||
const <%=h.changeCase.camel(name)%>Module = angular.module('<%=h.changeCase.camel(name)%>', []) | ||
const <%=h.changeCase.camel(name)%>Module = angular | ||
.module('<%=h.changeCase.camel(name)%>', []) | ||
|
||
.service('<%=h.changeCase.pascal(name)%>', <%=h.changeCase.pascal(name)%>Service) | ||
|
||
.name; | ||
.service('<%=h.changeCase.pascal(name)%>', <%=h.changeCase.pascal(name)%>Service).name; | ||
|
||
export default <%=h.changeCase.camel(name)%>Module; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.service.js | ||
to: app/<%=path%>/<%=name%>/<%=name%>.service.js | ||
--- | ||
class <%=h.changeCase.pascal(name)%>Service { | ||
/* @ngInject */ | ||
constructor() { | ||
this.name = '<%=name%>'; | ||
} | ||
/* @ngInject */ | ||
constructor() { | ||
this.name = '<%=name%>'; | ||
} | ||
} | ||
|
||
export default <%=h.changeCase.pascal(name)%>Service; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
to: src/app/<%=path%>/<%=name%>/<%=name%>.spec.js | ||
to: app/<%=path%>/<%=name%>/<%=name%>.spec.js | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.