Skip to content

Commit 0088b7d

Browse files
committed
Fix Scope to org name
1 parent 8da7058 commit 0088b7d

File tree

16 files changed

+47
-47
lines changed

16 files changed

+47
-47
lines changed

.github/workflows/publish-core.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
with:
2323
node-version: '24'
2424
registry-url: 'https://npm.pkg.github.com'
25-
scope: '@tinywebdb'
25+
scope: '@kodular'
2626

2727
- name: Install dependencies
2828
run: npm ci
2929

3030
- name: Build core package
31-
run: npm run build -w @tinywebdb/core
31+
run: npm run build -w @kodular/tinywebdb-core
3232

3333
- name: Publish to GitHub Packages
34-
run: npm publish -w @tinywebdb/core
34+
run: npm publish -w @kodular/tinywebdb-core
3535
env:
3636
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@tinywebdb:registry=https://npm.pkg.github.com
1+
@kodular:registry=https://npm.pkg.github.com

package-lock.json

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

packages/cloudflare-d1/.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@tinywebdb:registry=https://npm.pkg.github.com
1+
@kodular:registry=https://npm.pkg.github.com

packages/cloudflare-d1/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@tinywebdb/cloudflare-d1",
3-
"version": "1.0.0",
2+
"name": "@kodular/tinywebdb-cloudflare-d1",
3+
"version": "0.0.1",
44
"description": "TinyWebDB deployment for Cloudflare Workers with D1 (SQLite) storage",
55
"main": "dist/index.js",
66
"type": "module",
@@ -26,7 +26,7 @@
2626
"node": ">=24.0.0"
2727
},
2828
"dependencies": {
29-
"@tinywebdb/core": "^1.0.0"
29+
"@kodular/tinywebdb-core": "^0.0.1"
3030
},
3131
"devDependencies": {
3232
"@cloudflare/workers-types": "^4.20241230.0",

packages/cloudflare-d1/src/CloudflareD1Storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { StoragePort, StoredData } from '@tinywebdb/core';
1+
import { StoragePort, StoredData } from '@kodular/tinywebdb-core';
22

33
/**
44
* Cloudflare D1 Storage Adapter

packages/cloudflare-d1/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Cloudflare Workers entry point for TinyWebDB with D1 storage
33
*/
44

5-
import { Application, HttpRequest } from '@tinywebdb/core';
5+
import { Application, HttpRequest } from '@kodular/tinywebdb-core';
66
import { CloudflareD1Storage } from './CloudflareD1Storage';
77

88
/**

packages/cloudflare-kv/.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@tinywebdb:registry=https://npm.pkg.github.com
1+
@kodular:registry=https://npm.pkg.github.com

packages/cloudflare-kv/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@tinywebdb/cloudflare-kv",
3-
"version": "1.0.0",
2+
"name": "@kodular/tinywebdb-cloudflare-kv",
3+
"version": "0.0.1",
44
"description": "TinyWebDB deployment for Cloudflare Workers with KV storage",
55
"main": "dist/index.js",
66
"type": "module",
@@ -22,7 +22,7 @@
2222
"node": ">=24.0.0"
2323
},
2424
"dependencies": {
25-
"@tinywebdb/core": "^1.0.0"
25+
"@kodular/tinywebdb-core": "^0.0.1"
2626
},
2727
"devDependencies": {
2828
"@cloudflare/workers-types": "^4.20241230.0",

packages/cloudflare-kv/src/CloudflareKVStorage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { StoragePort, StoredData } from '@tinywebdb/core';
1+
import { StoragePort, StoredData } from '@kodular/tinywebdb-core';
22

33
/**
44
* Cloudflare KV Storage Adapter

0 commit comments

Comments
 (0)