Oxcyn

About me and everything is surrounding me

MIT License

Stars
1
Committers
3

Bot releases are visible (Hide)

Oxcyn - @oxcyn-apps/landing-api-0.2.0 Latest Release

Published by github-actions[bot] 3 months ago

Pull Requests | Compare

What's new

  • Added answer and question GraphAPI for chat feature.

What's Changed

Full Changelog: https://github.com/itsferdiardiansa/Oxcyn/compare/@oxcyn-apps/landing-api-0.1.0...@oxcyn-apps/landing-api-0.2.0

Oxcyn - @oxcyn-apps/landing-api-0.1.0

Published by github-actions[bot] 4 months ago

Oxcyn - @oxcyn-apps/web-personal-1.1.0

Published by github-actions[bot] 5 months ago

Oxcyn - @oxcyn-apps/web-personal-1.0.0

Published by github-actions[bot] 6 months ago

Pull Requests | Compare

First release 🥳🥳🥳. And got some updates here:

  • fba1ba7 - Created a new design.
  • f1d3f92 - Updated eslint to previous version.
Oxcyn - @oxcyn-apps/web-personal-1.0.1

Published by github-actions[bot] 6 months ago

Oxcyn - @oxcyn-apps/web-personal-1.0.0

Published by github-actions[bot] 6 months ago

Oxcyn - @oxcyn-apps/web-personal-0.1.0

Published by github-actions[bot] 8 months ago

Pull Requests | Compare

  • Created an initial web-personal.
  • Consists of greetings and banner.
Oxcyn - @oxcyn/utils-1.1.0

Published by github-actions[bot] 8 months ago

Pull Requests | Compare


  • Tailwind utility.
import { cn } from "@oxcyn/utils" // expected get the fn correctly

<div className={cn(cls...)}>
  • Number uility.
import { formatCurrency } from "@oxcyn/utils" 

formatCurrency(2000)
Oxcyn - @oxcyn/firebase-0.1.0

Published by github-actions[bot] 8 months ago

Pull Requests | Compare

  • Created an initial firebase lib.
Oxcyn - @types/oxcyn-0.1.0

Published by github-actions[bot] 8 months ago

Pull Requests | Compare

  • Added a next dynamic component props type.
function Blog({ params, searchParams }: NextParamProps<{ id: number }, { key: string }>) {}
  • Added some response types.
enum ErrorCode {
    // 40x
    BAD_REQUEST = 400,
    UNAUTHORIZED = 401,
    FORBIDDEN = 402,
    NOT_FOUND = 404,
    METHOD_NOT_ALLOWED = 405,

    // 50x
    SERVER_ERROR = 500,
    BAD_GATEWAY = 502,
    GATEWAY_TIMEOUT = 503,
}
Oxcyn - @oxcyn/utils-1.0.0

Published by github-actions[bot] 8 months ago

Pull Requests | Compare

First release of Oxcyn utilities.

  • 02c35da - Created methods for number formatting and a method to join tw classes.