Skip to content

Commit 6538e93

Browse files
committed
update org to kotaicode
1 parent 812a1df commit 6538e93

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ A TypeScript library for performing arithmetic and comparison operations on Kube
1414
## Installation
1515

1616
```bash
17-
npm install @kotaicodegmbh/k8s-resources
17+
npm install @kotaicode/k8s-resources
1818
```
1919

2020
## Usage
2121

2222
### CPU Resources
2323

2424
```typescript
25-
import { CPUResource, MemoryResource } from '@kotaicodegmbh/k8s-resources';
25+
import { CPUResource, MemoryResource } from '@kotaicode/k8s-resources';
2626

2727
// Create CPU resources
2828
const cpu1 = new CPUResource('100m'); // 100 millicores
@@ -48,7 +48,7 @@ console.log(cpu2.toString()); // "1"
4848
### Memory Resources
4949

5050
```typescript
51-
import { MemoryResource } from '@kotaicodegmbh/k8s-resources';
51+
import { MemoryResource } from '@kotaicode/k8s-resources';
5252

5353
// Create memory resources
5454
const mem1 = new MemoryResource('128Mi'); // 128 mebibytes

docs/release.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Guide
22

3-
This guide explains how to set up your NPM account and create releases for the `@kotaicodegmbh/k8s-resources` package.
3+
This guide explains how to set up your NPM account and create releases for the `@kotaicode/k8s-resources` package.
44

55
## Prerequisites
66

@@ -24,7 +24,7 @@ If you don't have an NPM account:
2424

2525
1. Log in to your NPM account
2626
2. Go to [npmjs.com/org/create](https://npmjs.com/org/create)
27-
3. Create an organization named "kotaicodegmbh"
27+
3. Create an organization named "kotaicode"
2828
4. Choose the "Free" plan
2929
5. Add your account as an owner
3030

@@ -78,7 +78,7 @@ The GitHub Actions workflow will automatically:
7878
1. Run tests
7979
2. Build the package
8080
3. Create a GitHub release with auto-generated notes
81-
4. Publish to NPM as `@kotaicodegmbh/k8s-resources`
81+
4. Publish to NPM as `@kotaicode/k8s-resources`
8282

8383
You can monitor the release progress in:
8484
- GitHub Actions tab
@@ -95,7 +95,7 @@ You can monitor the release progress in:
9595

9696
### 2. Check NPM Package
9797

98-
1. Visit [npmjs.com/package/@kotaicodegmbh/k8s-resources](https://npmjs.com/package/@kotaicodegmbh/k8s-resources)
98+
1. Visit [npmjs.com/package/@kotaicode/k8s-resources](https://npmjs.com/package/@kotaicode/k8s-resources)
9999
2. Verify the new version is listed
100100
3. Check the package details
101101

@@ -104,7 +104,7 @@ You can monitor the release progress in:
104104
Test the package installation in a new project:
105105

106106
```bash
107-
npm install @kotaicodegmbh/k8s-resources
107+
npm install @kotaicode/k8s-resources
108108
```
109109

110110
## Troubleshooting

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@kotaicodegmbh/k8s-resources",
2+
"name": "@kotaicode/k8s-resources",
33
"version": "0.1.2",
44
"description": "A TypeScript library for performing arithmetic and comparison operations on Kubernetes CPU and memory resources",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)