AppPlugins: fix app support and add an alpha example (#16528)

* app pages

* app pages

* workign example

* started alpha support

* bump controller limit

* bump controller limit

* existing plugin pages work again

* save Plugin in cache

* remove AppPage wip
This commit is contained in:
Ryan McKinley
2019-04-15 07:54:00 -07:00
committed by Torkel Ödegaard
parent 5f1b2691a3
commit 5a0cf1a83c
18 changed files with 220 additions and 42 deletions

View File

@@ -4,7 +4,7 @@ echo -e "Collecting code stats (typescript errors & more)"
ERROR_COUNT_LIMIT=5977
DIRECTIVES_LIMIT=175
CONTROLLERS_LIMIT=138
CONTROLLERS_LIMIT=140
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --noImplicitAny true | grep -oP 'Found \K(\d+)')"
DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"