-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move faker.js to devDependencies as it's not used in production app. Also add node args to pm2 config to support es6
- Loading branch information
1 parent
11dde60
commit e09711a
Showing
11 changed files
with
95 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
### Testing Tasks | ||
|
||
- [ ] Improve coverage | ||
- [ ] Add paginate tests | ||
- [ ] Add toJSON tests | ||
- [x] Add paginate tests | ||
- [x] Add toJSON tests | ||
|
||
### Other Tasks | ||
|
||
- [ ] Have faker.js as a dev dependency | ||
- [x] Have faker.js as a dev dependency | ||
- [ ] Add Cookie Support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import * as tokenFixture from './token.fixture'; | ||
import * as tokenService from './token.service'; | ||
import Token from './token.model'; | ||
import * as tokenInterfaces from './token.interfaces'; | ||
import tokenTypes from './token.types'; | ||
|
||
export { tokenFixture, tokenService, Token, tokenInterfaces, tokenTypes }; | ||
export { tokenService, Token, tokenInterfaces, tokenTypes }; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
import * as userController from './user.controller'; | ||
import * as userFixture from './user.fixture'; | ||
import * as userInterfaces from './user.interfaces'; | ||
import User from './user.model'; | ||
import * as userService from './user.service'; | ||
import * as userValidation from './user.validation'; | ||
|
||
export { userController, userFixture, userInterfaces, User, userService, userValidation }; | ||
export { userController, userInterfaces, User, userService, userValidation }; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters