DirectInput: new alpha datasource that lets you enter data via CSV

Initial alpha datasource that saves data directly in a panel or in the shared datasource configs.
This commit is contained in:
Ryan McKinley
2019-04-12 10:13:36 -07:00
committed by GitHub
parent d27de81a91
commit 08a22c806f
23 changed files with 450 additions and 45 deletions

View File

@ -3,8 +3,8 @@
echo -e "Collecting code stats (typescript errors & more)"
ERROR_COUNT_LIMIT=6816
DIRECTIVES_LIMIT=173
CONTROLLERS_LIMIT=137
DIRECTIVES_LIMIT=175
CONTROLLERS_LIMIT=138
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)"