Skip to content

Commit

Permalink
ref: update naming packages
Browse files Browse the repository at this point in the history
  • Loading branch information
harrytran998 committed Jul 2, 2024
1 parent 60709a3 commit 30ce9f2
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion apps/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Hono } from "hono";
// import { compress } from "hono/compress";
import { timing } from "hono/timing";

import { commonContext, secureHeadersMiddleware } from "@techmely/hono";
import { commonContext, secureHeadersMiddleware } from "@starly/models";
import { safeParse } from "valibot";
import { accountRouter } from "./contexts/identify-access/user/infras/http/routers/account.router";
import { userRouter } from "./contexts/identify-access/user/infras/http/routers/user.router";
Expand Down
2 changes: 1 addition & 1 deletion apps/api/libs/error/global.handle-error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { HonoEnv } from "@techmely/hono";
import type { HonoEnv } from "@starly/models";
import { CODE_INTERNAL_SERVER_ERROR } from "@techmely/http";
import type { Context } from "hono";

Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/api",
"name": "@starly/api",
"version": "0.0.1",
"private": true,
"description": "Techmely API",
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/starly-app",
"name": "@starly/starly-app",
"main": "index.js",
"version": "1.0.0",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/web",
"name": "@starly/web",
"version": "0.0.0",
"private": true,
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions apps/web/server/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Hono } from "hono";
import { timing } from "hono/timing";

import type { HonoEnv } from "@techmely/hono";
import { clientRuntimeEnvSchema, commonContext, secureHeadersMiddleware } from "@techmely/hono";
import type { HonoEnv } from "@starly/models";
import { clientRuntimeEnvSchema, commonContext, secureHeadersMiddleware } from "@starly/models";
import vikeMiddleware from "./middleware/vike";

const app = new Hono<HonoEnv>();
Expand Down
2 changes: 1 addition & 1 deletion apps/web/server/middleware/vike.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { HonoEnv } from "@techmely/hono";
import type { HonoEnv } from "@starly/models";
import type { MiddlewareHandler } from "hono";
import { getCookie, setCookie } from "hono/cookie";
import { renderPage } from "vike/server";
Expand Down
2 changes: 1 addition & 1 deletion apps/web/server/middleware/vite.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { html } from "@elysiajs/html";
import type { HonoEnv } from "@techmely/hono";
import type { HonoEnv } from "@starly/models";
import type Elysia from "elysia";
import type { Hono } from "hono";

Expand Down
2 changes: 1 addition & 1 deletion docs/handbook/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/handbook",
"name": "@starly/handbook",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion docs/tech-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/tech-docs",
"name": "@starly/tech-docs",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "techmely-monorepo",
"name": "starly-monorepo",
"private": true,
"license": "AGPLv3",
"workspaces": ["apps/*", "packages/*", "docs/*"],
Expand Down
2 changes: 1 addition & 1 deletion packages/db/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/db",
"name": "@starly/db",
"version": "1.0.0",
"homepage": "https://about.techmely.com/products",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/design-system",
"name": "@starly/design-system",
"version": "0.0.0",
"homepage": "https://techmely.com/products/design-system",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/hono/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/hono",
"name": "@starly/hono",
"version": "1.0.0",
"homepage": "https://about.techmely.com/products",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/models/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@techmely/models",
"name": "@starly/models",
"version": "1.0.0",
"homepage": "https://abount.techmely.com/products",
"bugs": {
Expand Down

0 comments on commit 30ce9f2

Please sign in to comment.