Commits (15) 
 -   Guy Thouret authored66e47067
-   Mark Harding authoredb8af41ee
-   Ben Hayward authored44dd3c01
-   Mark Harding authored[Sprint/ModestMonkey](chore): Added linting to pre-commit hook #1807 Closes #1807 See merge request !532 dfcf7e79
-   Mark Harding authored(fix) Fix TypeError being thrown on window resize of new blog page See merge request !536 0b8b5170
-   Ben Hayward authoredf8a9f973
-   Mark Harding authored[Sprint/ModestMonkey](fix): Return void if there is no selected or deselected image Closes #1791 See merge request !531 60a74dfa
-   Ben Hayward authored981746d8
-   Brian Hatchet authored[Sprint/ModestMonkey](fix): Updates to fix 'Enter phone number' modal on some mobiles Closes #391 See merge request !527 5607b238
-   Mark Harding authoredefca49c0
-   Ben Hayward authoreda90c8ee6
-   Brian Hatchet authored[Sprint/LuckyLizard](fix) Boost console feed #1596 Closes #1596 See merge request !501 4cfc63bc
-   Brian Hatchet authoredAdded a new component for a channel mode selector Stupid simple component, but oh the tests! Drastically improved our e2e tests by sharing cookies since everything but the login uses the same session. Added unit tests 47d7da3a
-   Brian Hatchet authoredEpic/permissions open channels See merge request !535 950f589d
-   Brian Hatchet authoredd049cd58
 Showing     
     cypress/support/utilities.js    0 → 100644  
   This diff is collapsed.  
 | ... | ... | @@ -5,7 +5,7 @@ | 
| "scripts": { | ||
| "ng": "ng", | ||
| "start": "ng serve", | ||
| "preinstall": "git config core.hooksPath .githooks", | ||
| "preinstall": "git config core.hooksPath .git/hooks/", | ||
| "prebuild": "gulp build.sass", | ||
| "build": "ng build --prod", | ||
| "prebuild-dev": "gulp build.sass --deploy-url=http://localhost/en", | ||
| ... | ... | @@ -61,12 +61,14 @@ | 
| "@types/node": "~10.12.18", | ||
| "codelyzer": "^4.5.0", | ||
| "cypress": "^3.4.1", | ||
| "cypress-file-upload": "^3.3.3", | ||
| "gulp": "~4.0.0", | ||
| "gulp-autoprefixer": "^6.0.0", | ||
| "gulp-css-globbing": "^0.2.2", | ||
| "gulp-minify-css": "^1.1.6", | ||
| "gulp-sass": "^4.0.2", | ||
| "gulp-template": "^5.0.0", | ||
| "husky": "^3.0.4", | ||
| "jasmine-core": "~2.99.0", | ||
| "jasmine-spec-reporter": "~4.2.1", | ||
| "jasmine-ts-async": "^1.0.0", | ||
| ... | ... | @@ -77,9 +79,15 @@ | 
| "karma-jasmine-html-reporter": "^0.2.2", | ||
| "karma-mocha-reporter": "^2.2.5", | ||
| "prettier": "1.18.2", | ||
| "pretty-quick": "^1.11.1", | ||
| "protractor": "~5.4.2", | ||
| "ts-node": "~7.0.0", | ||
| "tslint": "~5.12.0", | ||
| "typescript": "~3.4.5" | ||
| }, | ||
| "husky": { | ||
| "hooks": { | ||
| "pre-commit": ".githooks/pre-commit && pretty-quick --staged --bail --pattern '**/*.*(ts|html|scss)'" | ||
| } | ||
| } | ||
| } |