-
-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move cli under lerna package (#1225)
* chore(cli): move cli under lerna package * chore(cli): move cli under lerna package * fix(cli): lock correct webpack version * fix(serve): expose cmdArgs using webpack-cli API * chore(serve): remove logs * chore: fix lerna config file * docs(cli): added readme file to the cli package * chore: moved to yarn workspaces to have a better testing suite This is done because we want to resolve internal packages during e2e without using shim code. * docs: updated contribution file * chore(ci): moved to yarn inside the CI * chore(ci): install yarn * chore(ci): fix issue inside yaml file * tests: fix various tests * chore(ci): fix node command * chore(ci): skip root check on yarn * chore(ci): skip tests because they don't work * chore(migrate): added ignore as webpack types are incorrect * docs:Update README.md Co-Authored-By: James George <[email protected]> Co-authored-by: James George <[email protected]>
- Loading branch information
1 parent
2dc495a
commit 358651e
Showing
66 changed files
with
299 additions
and
51,986 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
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
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,12 @@ | ||
module.exports = { | ||
testPathIgnorePatterns: ['<rootDir>/node_modules/'], | ||
// transformIgnorePatterns: ['<rootDir>.*(node_modules)(?!.*webpack-cli.*).*$'], | ||
testEnvironment: 'node', | ||
collectCoverage: true, | ||
coverageReporters: ['json', 'html', 'cobertura'], | ||
transform: { | ||
'^.+\\.(ts)?$': 'ts-jest', | ||
}, | ||
testRegex: ['/__tests__/.*\\.(test.js|test.ts)$', '/test/.*\\.(test.js|test.ts)$'], | ||
moduleFileExtensions: ['ts', 'js', 'json'], | ||
}; |
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
Oops, something went wrong.