remove React code, node-sass, and sass-loader dependencies
This commit is contained in:
parent
f0dd2e348b
commit
9dfab42c0a
17 changed files with 2 additions and 594 deletions
|
@ -1,5 +1,4 @@
|
|||
import { PageServiceImpl } from './services/page/page.service.impl';
|
||||
import { rpHeaderDirective, rpBodyDirective, rpSidebarDirective } from './directives/components/pages/repo-page/main';
|
||||
import * as angular from 'angular';
|
||||
|
||||
|
||||
|
@ -7,7 +6,4 @@ import * as angular from 'angular';
|
|||
* TODO: Needed for non-TypeScript components/services to register themselves. Remove once they are migrated.
|
||||
*/
|
||||
export const QuayPagesModule: ng.IModule = angular.module('quayPages', [])
|
||||
.constant('pages', new PageServiceImpl())
|
||||
.directive('rpHeader', rpHeaderDirective)
|
||||
.directive('rpSidebar', rpSidebarDirective)
|
||||
.directive('rpBody', rpBodyDirective);
|
||||
.constant('pages', new PageServiceImpl());
|
||||
|
|
Reference in a new issue