Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename hitz-group #57

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/github-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
registry-url: "https://npm.pkg.github.com"
scope: "@hitz-group"
scope: "@oolio-group"
- name: Install Node Dependencies
run: yarn install
- name: Build packages
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) Hitz Group. and its affiliates.
Copyright (c) Oolio Group. and its affiliates.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# @hitz-group/rn-use-modal
# @oolio-group/rn-use-modal

React hook for showing modals on react-native. Uses `react-native-modal` under the hood. Show any component as modal with `showModal`

[![codecov](https://codecov.io/gh/hitz-group/rn-use-modal/branch/master/graph/badge.svg?token=PINPV73BX8)](https://codecov.io/gh/hitz-group/rn-use-modal) [![npm](https://img.shields.io/npm/v/@hitz-group/rn-use-modal/latest.svg)](https://www.npmjs.com/package/@hitz-group/rn-use-modal) ![Build](https://github.com/hitz-group/rn-use-modal/workflows/Unit%20Tests%20and%20ESLint/badge.svg)
[![codecov](https://codecov.io/gh/oolio-group/rn-use-modal/branch/master/graph/badge.svg?token=PINPV73BX8)](https://codecov.io/gh/oolio-group/rn-use-modal) [![npm](https://img.shields.io/npm/v/@oolio-group/rn-use-modal/latest.svg)](https://www.npmjs.com/package/@oolio-group/rn-use-modal) ![Build](https://github.com/oolio-group/rn-use-modal/workflows/Unit%20Tests%20and%20ESLint/badge.svg)

## Why

Expand All @@ -12,7 +12,7 @@ React hook for showing modals on react-native. Uses `react-native-modal` under t
## Usage

```js
import { useModal } from '@hitz-group/rn-use-modal';
import { useModal } from '@oolio-group/rn-use-modal';

function ScreenWithModal() {
const { showModal, closeModal } = useModal();
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@hitz-group/rn-use-modal",
"name": "@oolio-group/rn-use-modal",
"description": "React hook for showing modals on react-native. Using useModal you can show any component as modal",
"keywords": [
"react",
Expand All @@ -8,7 +8,7 @@
"modal",
"useModal"
],
"version": "0.1.8",
"version": "0.1.9",
"main": "lib/index",
"types": "lib",
"files": [
Expand All @@ -18,9 +18,9 @@
],
"repository": {
"type": "git",
"url": "http://github.com/hitz-group/rn-use-modal.git"
"url": "http://github.com/oolio-group/rn-use-modal.git"
},
"bugs": "https://github.com/hitz-group/rn-use-modal/issues",
"bugs": "https://github.com/oolio-group/rn-use-modal/issues",
"license": "MIT",
"contributors": [
"Shidil Eringa <[email protected]>"
Expand Down