Skip to content

Commit

Permalink
QUALITY: Prepare for migration to angular 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jakerenzella committed Jul 8, 2019
1 parent 178537c commit b0f9b43
Show file tree
Hide file tree
Showing 5 changed files with 137 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ module.exports = function ( grunt ) {
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-newer');


var sass = require('node-sass');
require('load-grunt-tasks')(grunt);
/**
* Load in our build configuration file.
*/
Expand Down Expand Up @@ -309,6 +312,7 @@ module.exports = function ( grunt ) {
sass: {
source: {
options: {
implementation: sass,
lineNumbers: true,
sourcemap: 'none'
},
Expand Down
130 changes: 130 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
"grunt-ngmin": "0.0.3",
"grunt-postcss": "^0.8.0",
"grunt-preprocess": "5.1.0",
"grunt-sass": "^3.0.2",
"grunt-sass-globbing": "^1.4.0",
"ip": "^1.1.2",
"jasmine-core": "~2.4.1",
Expand All @@ -113,6 +114,7 @@
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"load-grunt-tasks": "^5.0.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss-scss": "^0.1.7",
Expand Down
1 change: 0 additions & 1 deletion src/app/doubtfire-angular.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import { ExtensionCommentComponent } from './tasks/task-comments-viewer/extensio
import { ExtensionModalComponent } from './common/modals/extension-modal/extension-modal.component';

import 'hammerjs';
import 'moment';

@NgModule({
// components
Expand Down
2 changes: 1 addition & 1 deletion src/app/tasks/task-sheet-viewer/task-sheet-viewer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
display: flex;
justify-content: center;
align-items: center;
height: calc(~'100% - 1px');
height: calc('100% - 1px');
text-align: center;
border-radius: 0;
&:first-child {
Expand Down

0 comments on commit b0f9b43

Please sign in to comment.