Skip to content

Commit

Permalink
リファクタ
Browse files Browse the repository at this point in the history
  • Loading branch information
kahirokunn committed Mar 19, 2024
1 parent 3102a7b commit da877f9
Show file tree
Hide file tree
Showing 163 changed files with 1,202 additions and 15,907 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/size.yml.bak

This file was deleted.

12 changes: 10 additions & 2 deletions .github/workflows/test-codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
filters: |
codegen:
- 'packages/rtk-query-codegen-openapi/**'
- 'packages/kubekit/**'
build:
needs: changes
Expand All @@ -31,7 +31,7 @@ jobs:

strategy:
matrix:
node-version: ['16.x']
node-version: ['20.x']

steps:
- uses: actions/checkout@v2
Expand All @@ -42,4 +42,12 @@ jobs:
cache: 'yarn'

- run: yarn install
- run: yarn build
- run: |
# For AMD64 / x86_64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
# For ARM64
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-arm64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- run: yarn test
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
.DS_Store
*.log
node_modules
# Dist and query are both build output folders
dist*/
# But don't ignore the RTK Query source
lib
es

Expand Down Expand Up @@ -36,3 +34,4 @@ tmp
eks-blueprints-add-ons

examples/generate-vercel-client/swagger.json
eks-blueprints-add-ons
26 changes: 0 additions & 26 deletions .yarn/patches/console-testing-library__npm_0.3.1.patch

This file was deleted.

20 changes: 0 additions & 20 deletions .yarn/patches/msw-npm-0.40.2-2107d48752

This file was deleted.

550 changes: 0 additions & 550 deletions .yarn/plugins/@yarnpkg/plugin-version.cjs

This file was deleted.

28 changes: 0 additions & 28 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

This file was deleted.

801 changes: 0 additions & 801 deletions .yarn/releases/yarn-3.2.4.cjs

This file was deleted.

9 changes: 0 additions & 9 deletions .yarnrc.yml

This file was deleted.

24 changes: 12 additions & 12 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
## How to contribute to kubernetes-ts
## How to contribute to kubekit

#### **Did you find a bug?**

* **Do not open up a GitHub issue if the bug is a security vulnerability
in kubernetes-ts**, and instead to refer to our [security policy](https://github.com/appthrust/kubernetes-ts/blob/main/SECURITY.md).
- **Do not open up a GitHub issue if the bug is a security vulnerability
in kubekit**, and instead to refer to our [security policy](https://github.com/appthrust/kubekit-ts/blob/main/SECURITY.md).

* **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/kubernetes-ts/kubernetes-ts/issues).
- **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/kubekit/kubekit/issues).

* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/kubernetes-ts/kubernetes-ts/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring.
- If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/kubekit/kubekit/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring.

#### **Did you write a patch that fixes a bug?**

* Open a new GitHub pull request with the patch.
- Open a new GitHub pull request with the patch.

* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
- Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.

#### **Do you intend to add a new feature or change an existing one?**

* Suggest your change in the [kubernetes-ts issues](https://github.com/appthrust/kubernetes-ts/issues) and start writing code.
- Suggest your change in the [kubekit issues](https://github.com/appthrust/kubekit-ts/issues) and start writing code.

#### **Do you have questions about the source code?**

* Ask any question about how to use kubernetes-ts in the [kubernetes-ts issues](https://github.com/appthrust/kubernetes-ts/issues).
- Ask any question about how to use kubekit in the [kubekit issues](https://github.com/appthrust/kubekit-ts/issues).

#### **Do you want to contribute to the kubernetes-ts documentation?**
#### **Do you want to contribute to the kubekit documentation?**

* Please PR directly.
- Please PR directly.

Thanks! :heart:

kubernetes-ts Team
kubekit Team
Loading

0 comments on commit da877f9

Please sign in to comment.