Update dependencies, template file, and docs

* Use git+https prefix in git-based npm dependencies
* Use ejs template for index to fix extraneous slash in path
* Remove outdated documentation
* Remove unused service
* Regenerate shrinkwrap
This commit is contained in:
gconsidine
2017-09-08 15:17:01 -04:00
parent c57c17546e
commit fba8a48d91
12 changed files with 35 additions and 898 deletions

View File

@@ -1,4 +1,4 @@
import defaults from '../../assets/default.strings.json';
import defaults from '@assets/default.strings.json';
let i18n;

View File

@@ -1,6 +1,5 @@
import CacheService from '@services/cache.service';
import EventService from '@services/event.service';
import PathService from '@services/path.service';
import BaseStringService from '@services/base-string.service';
import AppStrings from '@services/app.strings';
@@ -9,5 +8,4 @@ angular
.service('AppStrings', AppStrings)
.service('BaseStringService', BaseStringService)
.service('CacheService', CacheService)
.service('EventService', EventService)
.service('PathService', PathService);
.service('EventService', EventService);

View File

@@ -1,11 +0,0 @@
function PathService () {
this.getPartialPath = path => {
return `/static/partials/${path}.partial.html`;
};
this.getViewPath = path => {
return `/static/views/${path}.view.html`;
}
}
export default PathService;