forked from carbon-design-system/carbon
-
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.
chore(project): setup project files (#1)
* chore(project): update LICENSE * chore(project): setup project files * chore(project): add github files
- Loading branch information
Showing
584 changed files
with
5,292 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/node:8 | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install yarn | ||
command: | | ||
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.13.0 | ||
export PATH=$HOME/.yarn/bin:$PATH | ||
- run: yarn install --offline --frozen-lockfile | ||
- run: | ||
name: Run ci checks | ||
command: yarn ci-check | ||
environment: | ||
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml" | ||
- store_test_results: | ||
path: reports | ||
- store_artifacts: | ||
path: reports |
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,14 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,34 @@ | ||
## Carbon Code of Conduct | ||
|
||
This is a place to ask questions, work through any challenges, and share ideas and best practices. The following suggestions and guidelines are intended to make the community easier and more enjoyable to use. | ||
|
||
### TLDR; | ||
|
||
- **Be respectful & understanding.** Not all of us will agree all the time, but disagreement is no excuse for poor behavior or poor manners. It is important that we resolve disagreements and differing views constructively. | ||
|
||
* **Be welcoming.** We strive to be a community that welcomes and supports people of all backgrounds and identities. | ||
|
||
### General | ||
|
||
Communication through any of Carbon's channels (GitHub, emails, Twitter, Slack) must be constructive and never resort to personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. | ||
|
||
We promise to extend courtesy and respect to everyone involved in this project, regardless of gender, gender identity, sexual orientation, disability, age, race, ethnicity, religion, or level of experience. We expect anyone contributing to Carbon to do the same. | ||
|
||
If any member of the community violates this Code of Conduct, the maintainers of Carbon may take action, including removing issues, comments, and PRs or blocking accounts, as deemed appropriate. | ||
|
||
If you are subjected to or witness unacceptable behavior, or have any other concerns, please communicate with us directly via [email protected]. | ||
|
||
### Slack | ||
|
||
1. Please, no `@here` or `@channel` unless it is a bug that is **breaking production code.** We have communities in many different time zones, and we would hate to disrupt someone not at the office. | ||
2. There's no need to notify the Carbon team that you have made an issue in Carbon's GitHub repositories. We check these several times a day, so we promise we'll address your issue as soon as we can. | ||
3. Reserve direct messages for sensitive discussions, such as privacy, legal, or HR reasons. Otherwise, we encourage posting in public channels so people with the same questions can benefit. | ||
4. If you have a pressing bug fix, it is best to make a PR directly to get your issues addressed. | ||
5. `#carbon-components`: This channel is for questions about Carbon Components only. It is not the place to ask general coding questions. Instead, use a dev community like [StackOverflow](https://stackoverflow.com/). | ||
6. `#carbon-design-system`: Please post any design questions with an in-context screen shot (i.e. screen shot of the whole UI you are designing) with background as to what you are trying to accomplish in this flow. We welcome in-progress work to get community design feedback as well. | ||
|
||
<hr> | ||
|
||
If you have suggestions to improve this Code of Conduct, please submit an issue or PR. | ||
|
||
This Code of Conduct was adopted from the [Angular Project](https://github.com/angular/code-of-conduct/blob/master/CODE_OF_CONDUCT.md) and [Todo Open Code of Conduct](http://todogroup.org/opencodeofconduct/). |
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,106 @@ | ||
# Contribution Guidelines | ||
|
||
Want to contribute to this repository? Please read below first: | ||
|
||
- [Issues and Bugs](#issues-and-bugs) | ||
- [Feature Requests](#feature-requests) | ||
- [Doc Fixes](#doc-fixes) | ||
- [Submission Guidelines](#submission-guidelines) | ||
|
||
## Issues and Bugs | ||
|
||
If you find a bug in the source code or a mistake in the documentation, you can help us by | ||
submitting an issue to this repo. Even better you can submit a Pull Request with a fix. | ||
|
||
**Please see the Submission Guidelines below**. | ||
|
||
## Feature Requests | ||
|
||
You can request a new feature by submitting an issue to this repo. Proposed features (with suitable design documentation and reasoning) can be crafted and submitted to this repo as a Pull Request. | ||
|
||
**Please see the Submission Guidelines below**. | ||
|
||
## Doc Fixes | ||
|
||
If you want to help improve the docs, it's a good idea to let others know what you're working on to minimize duplication of effort. Comment on an issue to let others know what you're working on, or create a new issue if your work doesn't fit within the scope of any of the existing doc fix projects. | ||
|
||
**Please see the Submission Guidelines below**. | ||
|
||
## Submission Guidelines | ||
|
||
### Setup | ||
|
||
1. Fork the project by navigating to the main [repository](https://github.com/carbon-design-system/carbon-upgrade) and clicking the **Fork** button on the top-right corner. | ||
|
||
2. Navigate to your forked repository and copy the **SSH url**. Clone your fork by running the following in your terminal: | ||
|
||
``` | ||
$ git clone [email protected]:{ YOUR_USERNAME }/carbon-upgrade.git | ||
$ cd carbon-upgrade | ||
``` | ||
|
||
See [GitHub docs](https://help.github.com/articles/fork-a-repo/) for more details on forking a repository. | ||
|
||
3. Once cloned, you will see `origin` as your default remote, pointing to your personal forked repository. Add a remote named `upstream` pointing to the main `carbon-upgrade`: | ||
|
||
``` | ||
$ git remote add upstream [email protected]:carbon-design-system/carbon-upgrade.git | ||
$ git remote -v | ||
``` | ||
|
||
4. Switch to our version of Node. If you are using (nvm [Node Version Manager)](https://github.com/creationix/nvm), you can run `nvm use` to quicky switch Node versions. If you are aren't using nvm, you can still check the `.nvmrc` dotfile in the root of this project to find the major stable version of Node we are using, and then you can switch manually. | ||
|
||
### Submitting an Issue | ||
|
||
Before you submit your issue, search the repository. Maybe your question was already answered. | ||
|
||
If your issue appears to be a bug, and hasn't been reported, open a new issue. Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. | ||
|
||
### Submitting a Pull Request | ||
|
||
1. Search this repository for an open or closed Pull Request that relates to your submission. You don't want to duplicate effort. | ||
|
||
2. Pull the latest master branch from `upstream`: | ||
|
||
``` | ||
$ git pull upstream master | ||
``` | ||
|
||
3. Always work and submit pull requests from a branch. _Do not submit pull requests from the `master` branch of your fork_. | ||
|
||
``` | ||
$ git checkout -b { YOUR_BRANCH_NAME } master | ||
``` | ||
|
||
4. Create your patch or feature. | ||
|
||
5. Test your branch and add new test cases where appropriate. | ||
|
||
6. Commit your changes using a descriptive commit message. | ||
|
||
``` | ||
$ git commit -a -m "chore: Update header with newest designs, resolves #123" | ||
``` | ||
|
||
**Note:** the optional commit -a command line option will automatically "add" and "rm" edited files. See [Close a commit via commit message](https://help.github.com/articles/closing-issues-via-commit-messages/) and [writing good commit messages](https://github.com/erlang/otp/wiki/Writing-good-commit-messages) for more details on commit messages. | ||
|
||
7. Once ready for feedback from other contributors and maintainers, **push your commits to your fork** (be sure to run `yarn ci-check` before pushing, to make sure your code passes linting and unit tests): | ||
|
||
``` | ||
$ git push origin { YOUR_BRANCH_NAME } | ||
``` | ||
|
||
8. In Github, navigate to [carbon-design-system/carbon-upgrade](https://github.com/carbon-design-system/carbon-upgrade) and click the button that reads "Compare & pull request". | ||
|
||
9. Write a title and description, the click "Create pull request". | ||
|
||
See [how to write the perfect pull request](https://github.com/blog/1943-how-to-write-the-perfect-pull-request) for more details on writing good PRs. | ||
|
||
10. Stay up to date with the activity in your pull request. Maintainers will be reviewing your work and making comments, asking questions and suggesting changes to be made before they merge your code. When you need to make a change, add, commit and push to your branch normally. | ||
|
||
Once all revisions to your pull request are complete, a maintainer will squash and merge your commits for you. | ||
|
||
For all details related to development, make sure to check out our [development | ||
guide](/docs/developing.md)! | ||
|
||
**That's it! Thank you for your contribution!** |
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,38 @@ | ||
--- | ||
name: Bug Report 🐛 | ||
about: Something isn't working as expected? Here is the right place to report. | ||
--- | ||
|
||
<!-- Feel free to remove sections that aren't relevant. | ||
## Title line template: [Title]: Brief description | ||
--> | ||
|
||
## Detailed description | ||
|
||
> Describe in detail the issue you're having. | ||
> Is this a feature request (new component, new icon), a bug, or a general issue? | ||
> Is this issue related to a specific component? | ||
> What did you expect to happen? What happened instead? What would you like to see changed? | ||
> What browser are you working in? | ||
> What version of the Carbon Design System are you using? | ||
> What offering/product do you work on? Any pressing ship or release dates we should be aware of? | ||
## Steps to reproduce the issue | ||
|
||
1. Step one | ||
2. Step two | ||
3. Step three | ||
4. etc. | ||
|
||
## Additional information | ||
|
||
- Screenshots or code | ||
- Notes |
16 changes: 16 additions & 0 deletions
16
packages/upgrade/.github/ISSUE_TEMPLATE/feature_request.md
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,16 @@ | ||
--- | ||
name: Feature Request 💡 | ||
about: Suggest a new idea for the project. | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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,28 @@ | ||
--- | ||
name: Question 🤔 | ||
about: Usage question or discussion about the Carbon Design System. | ||
--- | ||
|
||
<!-- | ||
Hi there! 👋 Hope everything is going okay using projects from the Carbon Design | ||
System. It looks like you might have a question about our work, so we wanted to | ||
share a couple resources that you could use if you haven't tried them yet 🙂. | ||
If you're an IBMer, we have a couple of Slack channels available across all IBM | ||
Workspaces: | ||
- #carbon-design-system for questions about the Design System | ||
- #carbon-components for questions about component styles | ||
- #carbon-react for questions about our React components | ||
If these resources don't work out, help us out by filling out a couple of | ||
details below! | ||
--> | ||
|
||
## Summary | ||
|
||
## Relevant information | ||
|
||
<!-- Provide as much useful information as you can --> |
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,17 @@ | ||
Closes # | ||
|
||
{{short description}} | ||
|
||
#### Changelog | ||
|
||
**New** | ||
|
||
- {{new thing}} | ||
|
||
**Changed** | ||
|
||
- {{change thing}} | ||
|
||
**Removed** | ||
|
||
- {{removed thing}} |
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,7 @@ | ||
# Support | ||
|
||
If you run into an issue, sorry about that! We definitely want to make sure that | ||
your experience using the Carbon Design System is the best that it can be. | ||
|
||
When this happens, just create an issue on GitHub by filling out the template | ||
and we'll try our best to respond in a reasonable time. |
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,40 @@ | ||
# Build folders | ||
es | ||
lib | ||
umd | ||
|
||
# Config files | ||
.npmrc | ||
|
||
# Cache folders | ||
.cache | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Certificates | ||
*.crt | ||
*.pem | ||
|
||
# Editor | ||
.DS_Store | ||
*.swp | ||
.idea | ||
.vscode | ||
|
||
# Coverage directory used by tools like istanbul, also includes default junit | ||
# output file | ||
coverage | ||
/junit.xml | ||
|
||
# Dependency directory | ||
node_modules | ||
|
||
# Generated by npm@5, but project currently uses Yarn | ||
package-lock.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8 |
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 @@ | ||
node_modules | ||
lib | ||
es | ||
umd |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.86 KB
packages/upgrade/.yarn-offline-mirror/@commitlint-config-conventional-7.3.1.tgz
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.34 KB
packages/upgrade/.yarn-offline-mirror/@commitlint-execute-rule-7.3.1.tgz
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.14 KB
packages/upgrade/.yarn-offline-mirror/@commitlint-is-ignored-7.3.1.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9 KB
packages/upgrade/.yarn-offline-mirror/@commitlint-resolve-extends-7.3.1.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.94 KB
packages/upgrade/.yarn-offline-mirror/@samverschueren-stream-to-observable-0.3.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.01 KB
packages/upgrade/.yarn-offline-mirror/babel-plugin-istanbul-4.1.6.tgz
Binary file not shown.
Binary file added
BIN
+2.29 KB
packages/upgrade/.yarn-offline-mirror/babel-plugin-jest-hoist-23.2.0.tgz
Binary file not shown.
Binary file added
BIN
+746 Bytes
packages/upgrade/.yarn-offline-mirror/babel-plugin-syntax-object-rest-spread-6.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.26 KB
packages/upgrade/.yarn-offline-mirror/console-control-strings-1.1.0.tgz
Binary file not shown.
Binary file added
BIN
+5.4 KB
packages/upgrade/.yarn-offline-mirror/conventional-changelog-angular-1.6.6.tgz
Binary file not shown.
Binary file added
BIN
+11.9 KB
packages/upgrade/.yarn-offline-mirror/conventional-commits-parser-2.1.7.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.87 KB
packages/upgrade/.yarn-offline-mirror/fast-json-stable-stringify-2.0.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.63 KB
packages/upgrade/.yarn-offline-mirror/html-encoding-sniffer-1.0.2.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.68 KB
packages/upgrade/.yarn-offline-mirror/is-accessor-descriptor-0.1.6.tgz
Binary file not shown.
Binary file added
BIN
+3.17 KB
packages/upgrade/.yarn-offline-mirror/is-accessor-descriptor-1.0.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.07 KB
packages/upgrade/.yarn-offline-mirror/is-fullwidth-code-point-1.0.0.tgz
Binary file not shown.
Binary file added
BIN
+2.01 KB
packages/upgrade/.yarn-offline-mirror/is-fullwidth-code-point-2.0.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.68 KB
packages/upgrade/.yarn-offline-mirror/jest-environment-jsdom-23.4.0.tgz
Binary file not shown.
Binary file added
BIN
+1.29 KB
packages/upgrade/.yarn-offline-mirror/jest-environment-node-23.4.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.