Commits on Source (20)
-
Mark Harding authored7e65b6a7
-
Mark Harding authored78412c5d
-
Mark Harding authored
closes #2090
1d95c0fc -
b89d9c80
-
Mark Harding authored
[Sprint/OldfashionedOwl](fix): Subscription feed upgrade #435 See merge request !599
f6e0d5cb -
Marcelo Rivera authoredb72d7e64
-
49c6e42f
-
Mark Harding authored
(fix): add title for activities Closes engine#923 See merge request !604
0dc35827 -
Mark Harding authored00804c2a
-
692b7ccd
-
Mark Harding authored
App changes to support Angular Hot Module Reloading for dev env See merge request !592
66944378 -
c0bb212f
-
Emiliano Balbuena authored
Githooks not working in Windows Closes #2135 See merge request !610
5e3c86ef -
7b6d4b4b
-
Mark Harding authored
Remove categories step from signup modal Closes #2124 See merge request !609
4b8d383a -
d95e964e
-
Mark Harding authored
Handle implicit Plus from Pro Closes #2128 See merge request !607
d66805df -
8826f544
-
Mark Harding authored
Adding Injectable to SignupModalService See merge request !618
80069206 -
Emiliano Balbuena authored3183d26d
... | @@ -10,6 +10,7 @@ | ... | @@ -10,6 +10,7 @@ |
"build": "ng build --prod", | "build": "ng build --prod", | ||
"prebuild-dev": "gulp build.sass --deploy-url=http://localhost/en", | "prebuild-dev": "gulp build.sass --deploy-url=http://localhost/en", | ||
"build-dev": "ng build --output-path dist/en --deploy-url=/en/ --watch=true --poll=800", | "build-dev": "ng build --output-path dist/en --deploy-url=/en/ --watch=true --poll=800", | ||
"serve-dev": "ng serve --host=0.0.0.0 --deploy-url=/en/ --configuration=hmr --hmr --poll=800 --progress", | |||
"test": "ng test", | "test": "ng test", | ||
"lint": "ng lint", | "lint": "ng lint", | ||
"e2e": "cypress run --debug", | "e2e": "cypress run --debug", | ||
... | @@ -57,6 +58,7 @@ | ... | @@ -57,6 +58,7 @@ |
"@angular/cli": "^7.2.1", | "@angular/cli": "^7.2.1", | ||
"@angular/compiler-cli": "~8.0.3", | "@angular/compiler-cli": "~8.0.3", | ||
"@angular/language-service": "~8.0.3", | "@angular/language-service": "~8.0.3", | ||
"@angularclass/hmr": "^2.1.3", | |||
"@types/jasmine": "~2.8.8", | "@types/jasmine": "~2.8.8", | ||
"@types/jasminewd2": "~2.0.4", | "@types/jasminewd2": "~2.0.4", | ||
"@types/node": "~10.12.18", | "@types/node": "~10.12.18", | ||
... | @@ -88,7 +90,7 @@ | ... | @@ -88,7 +90,7 @@ |
}, | }, | ||
"husky": { | "husky": { | ||
"hooks": { | "hooks": { | ||
"pre-commit": ".githooks/pre-commit && pretty-quick --staged --bail --pattern '**/*.*(ts|html|scss)'" | "pre-commit": "sh .githooks/pre-commit && pretty-quick --staged --bail --pattern \"**/*.*(ts|html|scss)\"" | ||
} | } | ||
} | } | ||
} | } |