Commits (28)
- Nicholas Lewis authorede61698e5
- Brian Hatchet authored
Chore/admin job post See merge request !529
a3b91894 - Mark Harding authored0f33f752
- Mark Harding authored1458fa3f
- Mark Harding authored3d286cd9
- Mark Harding authored0e4667c0
- Mark Harding authored0aec94c9
- Olivia Madrid authored5fe8f2b2
- Mark Harding authored
Agnostic media modal Closes #1822 See merge request !530
100602ee - Emiliano Balbuena authored61c1fc76
- Mark Harding authored
[Sprint/ModestMonkey] (fix): Diagnostics ID flood (#1857) See merge request !534
e6c32aca - 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 authored
Added 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 authored
Epic/permissions open channels See merge request !535
950f589d - Ben Hayward authoreda52e114d
- Mark Harding authored
[Sprint/ModestMonkey](feat): Added edit functionality to profile sidebar #1133 Closes #1133 See merge request !526
2be70043 - Ben Hayward authored
# Conflicts: # src/app/modules/boost/console/booster/booster.component.html # src/app/modules/boost/console/booster/booster.component.spec.ts
7c8be14f
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)'" | ||
} | ||
} | ||
} |
This diff is collapsed.