-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): moving the core library into an isolated package (#725)
* feat: pulling the core library out into a separate package * refactor(core): splitting the core library out into an isolated package * docs: adding a readme to core * refactor: cleaning up the test-utils pkg * chore: config cleanup * fix: moving `@api/core` to be a devdep * Update packages/core/README.md Co-authored-by: Kanad Gupta <[email protected]> --------- Co-authored-by: Kanad Gupta <[email protected]>
- Loading branch information
1 parent
499b891
commit 189b8c5
Showing
81 changed files
with
503 additions
and
679 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,12 +1,13 @@ | ||
!.alexrc.js | ||
|
||
# api subpackage | ||
packages/api/coverage/ | ||
packages/api/dist/ | ||
packages/**/coverage/ | ||
packages/**/dist/ | ||
|
||
# api | ||
packages/api/test/__fixtures__/sdk/ | ||
|
||
# httpsnippet-client-api subpackage | ||
packages/httpsnippet-client-api/coverage/ | ||
packages/httpsnippet-client-api/dist/ | ||
packages/httpsnippet-client-api/node_modules/ | ||
# httpsnippet-client-api | ||
packages/httpsnippet-client-api/test/__datasets__/**/output.js | ||
|
||
# test-utils | ||
packages/test-utils/fixtures/ |
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,17 +1,11 @@ | ||
CHANGELOG.md | ||
packages/**/coverage/ | ||
packages/**/dist/ | ||
|
||
# api subpackage | ||
# api | ||
packages/api/.api/ | ||
packages/api/coverage/ | ||
packages/api/.eslint* | ||
packages/api/.gitignore | ||
packages/api/.prettier* | ||
packages/api/CHANGELOG.md | ||
packages/api/dist/ | ||
packages/api/example.js | ||
packages/api/test/__fixtures__/sdk/ | ||
|
||
# httpsnippet-client-api subpackage | ||
packages/httpsnippet-client-api/coverage/ | ||
packages/httpsnippet-client-api/dist/ | ||
# httpsnippet-client-api | ||
packages/httpsnippet-client-api/test/__datasets__/**/output.js |
Oops, something went wrong.