429 Commits

Author SHA1 Message Date
69dd12375c Fix image-upload, http-client and config 2019-09-15 17:35:31 +07:00
50d36f268f Fix linting errors in packages/jsonrpc 2019-09-15 17:14:31 +07:00
8853c71a0d Fix linting in packages/logger 2019-09-15 16:43:38 +07:00
003032c3ef Fix linting error in packages/redux 2019-09-15 16:20:52 +07:00
8c732ba91e Install eslint and fix errors
- argparse
- scripts
- tasq
- validator
2019-09-15 15:57:22 +07:00
fb41c2ce69 Add @rondo.dev/common guard fn
This is to help guard against types that can be undefined since the
recommended eslint rules recommend against using `!` operator on values
like:

    const obj: Obj | undefined = ...
    obj!.value

Now we can use:

    const obj: Obj | undefined = ...
    const obj2: Obj = guard(isDefined, obj)
    obj.value

The guard function will throw an error if obj parameter is undefined.
2019-09-15 11:40:31 +07:00
6cbcf3c69c Update TODO.md 2019-09-14 12:59:08 +07:00
0d1fddf512 Fix linting errors 2019-09-14 12:53:30 +07:00
ac8f1d9ff3 Run rondo syncEsmConfig 2019-09-14 12:01:29 +07:00
177c52b438 Upgrade to typescript@3.6.3 2019-09-14 11:58:00 +07:00
c14456b606 Move validator into separate package 2019-09-14 11:41:21 +07:00
1eafdf7fd8 Move template into packages/scripts 2019-09-14 11:28:39 +07:00
103f6d1e7a Remove BaseService 2019-09-14 11:14:28 +07:00
1fde923dbf Fix concurrency issue in TeamService.test.ts 2019-09-14 10:30:44 +07:00
d532ac82f0 Fix broken tests 2019-09-14 10:05:35 +07:00
36338ccdbe Fix broken build 2019-09-14 00:34:59 +07:00
195d7226e8 Rename jsonrpc types 2019-09-13 23:49:05 +07:00
16400d01c3 Add formik 2019-09-12 16:27:14 +07:00
ea6c349e6c Add rimraf and rondo clean script 2019-09-11 21:29:12 +07:00
25589b870c Refactor common/team 2019-09-11 13:34:41 +07:00
ae2ed21f05 Remove unused routes
TBD: fix comments-server
2019-09-11 12:18:13 +07:00
270b28dd68 Run tslint --fix on team 2019-09-11 12:07:08 +07:00
67e81d6b80 Add ability to record custom actions by WaitMiddleware 2019-09-11 12:05:36 +07:00
c2c49c5f7a Record actions before rendering 2019-09-11 10:14:56 +07:00
fdbe4be75f Return waitForActions after rendering 2019-09-11 10:13:34 +07:00
055d9588bf Use JSONRPC in TeamService (needs more testing) 2019-09-11 00:40:10 +07:00
9199961fdb Add jsonrpc createClientMock 2019-09-10 21:29:10 +07:00
eebe26f706 Extract redux, http-types, http-client and test-utils 2019-09-10 17:56:25 +07:00
f509004dac Add rpc/TeamService.test.ts 2019-09-07 19:44:29 +07:00
b813916c19 Use simpler interface for Bootstrap app server 2019-09-07 19:27:21 +07:00
b2205660a2 Add todo item 2019-09-07 09:44:46 +07:00
4f533e7fff Return headers from login/registerAccount test methods 2019-09-07 09:44:00 +07:00
3739f27ebe Add first test for JSONRPC service 2019-09-07 09:38:43 +07:00
0e69cf239a Optimize imports 2019-09-07 07:54:53 +07:00
65f8915dc1 Add useCallback when testing FunctionalComponent 2019-09-05 13:07:26 +07:00
ee6a6741ed Add test for pack.ts 2019-09-05 12:58:59 +07:00
a6a8fd833d Mark Connector as deprecated 2019-09-05 10:21:51 +07:00
2a4d196906 Fix doc of pack.ts 2019-09-05 10:21:31 +07:00
5cf54d0be9 Rename old UserService to AuthService, LoginRoutes to AuthRoutes 2019-09-05 10:19:27 +07:00
0a1eabadd9 Add test for _-prefixed methods 2019-09-05 09:31:32 +07:00
c4ae271604 Move private _-prefix method check into getAllMethods 2019-09-05 09:28:48 +07:00
1aa6cae0f3 Add ability to specify jsonrpc context asynchronously 2019-09-05 09:25:38 +07:00
927ccfa6e6 Remove unused param from Executor.ts 2019-09-05 08:27:57 +07:00
8396323ea1 Refactor ITask into messages 2019-09-02 11:34:22 +07:00
d74faf7c0f Fix TaskManager.test.ts 2019-09-02 11:11:21 +07:00
03c53e3a00 Update TODO.md 2019-09-02 11:11:04 +07:00
a22c59bec5 Add result to scheduled tasks 2019-09-01 18:41:23 +07:00
b84e4bbbbf Refactor tasq to prepare for forked executors 2019-09-01 17:53:23 +07:00
6a456eb6e8 Fix broken tests 2019-09-01 15:40:34 +07:00
5b5adb6408 Update dependencies
TypeScript 3.6 cannot be updated because of a current bug with
FindConditions<?>.

https://github.com/typeorm/typeorm/pull/4470
https://github.com/typeorm/typeorm/issues/4662

https://github.com/microsoft/TypeScript/pull/33144
2019-09-01 14:17:08 +07:00