-
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct package individually patterns functionality (#249)
* fix: correct package individually patterns functionality * refactor: move folder names to separate file * chore: add unit test coverage * refactor: change folders to constants * refactor: add only prefix * chore: add comment * feat: use functionAlias as zip name * refactor: remove unused type * refactor: use Object.values * refactor: fix test case typo * refactor: sort object keys
- Loading branch information
Showing
5 changed files
with
132 additions
and
49 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,7 +1,8 @@ | ||
const config = { | ||
preset: 'ts-jest', | ||
verbose: true, | ||
transform: {} | ||
transform: {}, | ||
testPathIgnorePatterns: ['dist'], | ||
}; | ||
|
||
module.exports = config; |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const SERVERLESS_FOLDER = '.serverless'; | ||
export const BUILD_FOLDER = '.build'; | ||
export const WORK_FOLDER = '.esbuild'; | ||
export const ONLY_PREFIX = '__only_'; |
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