Commits (75)
-
Emiliano Balbuena authored6b1b3271
-
Mark Harding authored
Modal pager fixes See merge request !749
c6474453 -
Mark Harding authored
Modal pager fixes See merge request !749
ff63f69d -
Emiliano Balbuena authoredfae30718
-
Mark Harding authored
Search period defaults and sort bar tweaks Closes #2490 See merge request !744
410e752c -
Mark Harding authored2261e73f
-
5ffd58f5
-
Mark Harding authored44667f0d
-
Mark Harding authoredfd261feb
-
Marcelo Rivera authored6fc73b99
-
Xander Miller authored
New Channel Registration, Signup button remains disabled Closes #2527 See merge request !757
759cb8aa -
Mark Harding authored9c924ddb
-
Brian Hatchet authored
Implements captcha - #646 See merge request !760
a8ed91a5 -
Mark Harding authorededbca40b
-
Mark Harding authored
#2535 pass route params to server See merge request !763
6968119e -
Mark Harding authored443efc60
-
Mark Harding authoredc6310433
-
Marcelo Rivera authored5018ca31
-
Mark Harding authored43727865
-
Emiliano Balbuena authoredbaeb58ce
-
Mark Harding authored
Feature flags admin panel Closes #2514 See merge request !753
c7d3caf5 -
Emiliano Balbuena authored061aed6d
-
Mark Harding authored
Confirmation email template assets See merge request !755
c7ea83b1 -
Marcelo Rivera authored60f8f62e
-
Mark Harding authored
Ability to go to original channel page from a published pro site Closes engine#1212 See merge request !726
cf8a0350 -
Ben Hayward authoredad7c5f83
-
Mark Harding authored
Uninstantiated observable in Sockets #2489 Closes #2489 See merge request !750
8c856a55 -
Mark Harding authored5398250e
-
Mark Harding authored14445689
-
Mark Harding authored14293472
-
Mark Harding authored0b7160e2
-
Mark Harding authored37f6a355
-
Mark Harding authored5a0f0093
-
Mark Harding authoredadc84259
-
Mark Harding authored
Implement pm2 runtime See merge request !773
cf9d6e6e -
Mark Harding authoreda3bb24b4
-
Mark Harding authored902e149b
-
Mark Harding authoredeff963de
-
Emiliano Balbuena authoredc849b404
-
Brian Hatchet authored
Local infrastructure provisioner (front) See merge request !766
745769a5 -
Xander Miller authored
(chore): disable groups and channels onboarding screens Closes #2542 See merge request !767
f9ccbf4b -
Marcelo Rivera authored
(fix): clicking on the join group button also opens up the group (fix): add more contrast to buttons
4273d327 -
Mark Harding authored9283a783
-
Mark Harding authored03646b9f
-
Ben Hayward authoredd0d71f4d
-
Xander Miller authored
Posting before rich-embed completed shows unwanted attachment in new comment underneath #2418 Closes #2418 See merge request !774
4d90e094 -
Mark Harding authored24173b95
-
Mark Harding authored308cb3ab
-
Mark Harding authored666f2b75
-
Marcelo Rivera authored8abaffef
-
Xander Miller authored
Remove duplicate bnjs Closes #2460 See merge request !754
e293cdcd -
Mark Harding authored90d72243
-
Mark Harding authored3434db17
-
Mark Harding authored7531c85c
-
Mark Harding authored13d96fd6
-
Mark Harding authored
If not a valid domain then redirect to root See merge request !780
6822f8c9 -
Mark Harding authoredde34bd78
-
Mark Harding authored266c3f0d
-
Ben Hayward authored1fa4019c
-
Mark Harding authoredc546247b
-
Mark Harding authored60151651
-
Mark Harding authored25be8190
-
Mark Harding authoredd04cf65a
-
Mark Harding authoredd82eaf2e
-
Mark Harding authored4a673ef2
-
Mark Harding authored98577295
-
Mark Harding authored9c33d87f
-
Mark Harding authored815d7e8a
-
Mark Harding authored1a0dc356
-
Mark Harding authoredfd093f43
-
Mark Harding authored44c60f1e
-
Mark Harding authored
Remove minds irl link from footer Closes minds#1061 See merge request !783
d3223fbc -
Xander Miller authored
Reduces bundle size by 37% See merge request !785
18d19ab7 -
Brian Hatchet authoredd0505c67
Showing
This diff is collapsed.
... | ... | @@ -8,11 +8,12 @@ |
"preinstall": "git config core.hooksPath .git/hooks/", | ||
"prebuild": "gulp build.sass", | ||
"build": "sh build/base-locale.sh dist", | ||
"prebuild-dev": "gulp build.sass --deploy-url=http://localhost", | ||
"build-dev": "npm run build:dev", | ||
"serve-dev": "npm run server:ssr", | ||
"build:dev": "ng build --output-path dist --deploy-url=/ --watch=true --poll=800", | ||
"serve:dev": "ng serve --host=0.0.0.0 --deploy-url=/ --configuration=hmr --hmr --poll=800 --progress --disableHostCheck=true", | ||
"build-dev": "echo 'Deprecated, please use build:dev'; npm run build:dev --", | ||
"serve-dev": "echo 'Deprecated, please use serve:ssr'; npm run serve:ssr --", | ||
"prebuild:dev": "gulp build.sass --deploy-url=http://localhost:8080/", | ||
"build:dev": "ng build --output-path=dist/en --deploy-url=http://localhost:8080/ --watch=true --poll=800 --aot", | ||
"preserve:dev": "gulp build.sass --deploy-url=http://localhost:4200/", | ||
"serve:dev": "ng serve --deploy-url=http://localhost:4200/ --watch=true --poll=800 --aot --progress --proxy-config proxy.conf.js --host=0.0.0.0 --disableHostCheck=true", | ||
"test": "ng test", | ||
"lint": "ng lint", | ||
"e2e": "cypress run --debug", | ||
... | ... | @@ -22,6 +23,7 @@ |
"serve:ssr": "node dist/server", | ||
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server", | ||
"build:client-and-server-bundles": "npm run build && ng run minds:server:production", | ||
"build:ssr:dev": "ng run minds:server:production && npm run compile:server", | ||
"bundle-report": "webpack-bundle-analyzer dist/en/stats.json" | ||
}, | ||
"private": true, | ||
... | ... | @@ -110,7 +112,8 @@ |
"tslint": "~5.12.0", | ||
"typescript": "~3.4.5", | ||
"webpack-bundle-analyzer": "^3.6.0", | ||
"webpack-cli": "^3.3.10" | ||
"webpack-cli": "^3.3.10", | ||
"nodemon": "^2.0.2" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
... | ... |
proxy.conf.js
0 → 100644
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
This diff is collapsed.
This diff is collapsed.
File moved
File moved
File moved
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
File moved
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.