Skip to content

Commit

Permalink
chore: rename cpk-ui to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
hyochan committed Dec 28, 2024
1 parent c984e8a commit dc8eb3d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ resolved or fixed by this PR._
I added the following tests:

_Replace this with a list of the tests that you added as part of this PR. A change in behavior with no test covering it
will likely get reverted accidentally sooner or later. PRs must include tests for all changed/updated/fixed behaviors. See [Test Coverage](https://codecov.io/gh/crossplatformkorea/CPK-UI)._
will likely get reverted accidentally sooner or later. PRs must include tests for all changed/updated/fixed behaviors. See [Test Coverage](https://codecov.io/gh/crossplatformkorea/cpk-ui)._

## Checklist

Before you create this PR confirms that it meets all requirements listed below by checking the relevant checkboxes (`[x]`). This will ensure a smooth and quick review process.

- [ ] I read the [Contributor Guide](https://github.com/crossplatformkorea/CPK-UI/blob/main/CONTRIBUTING.md) and followed the process outlined there for submitting PRs.
- [ ] I read the [Contributor Guide](https://github.com/crossplatformkorea/cpk-ui/blob/main/CONTRIBUTING.md) and followed the process outlined there for submitting PRs.
- [ ] Run `yarn test:all` and make sure nothing fails.
- [ ] I am willing to follow-up on review comments in a timely manner.
2 changes: 1 addition & 1 deletion CHANGELOGS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Changelogs

Covered in [release notes](https://github.com/crossplatformkorea/CPK-UI/releases).
Covered in [release notes](https://github.com/crossplatformkorea/cpk-ui/releases).
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

### Things to Keep in Mind

> Only components in the `main` directory are published to `npm`. These are the components intended for production use.
> When creating new components, please ensure you write `test code` for them.
> Add `stories` in the `storybook` directory to showcase components. Users can easily see a [demo](https://ui.crossplatformkorea.com) of all components at a glance.
> Only components in the `main` directory are published to `npm`. These are the components intended for production use.
> When creating new components, please ensure you write `test code` for them.
> Add stories to the same directory (e.g., component.stories.tsx) to showcase components. This allows users to easily view a demo of all components at a glance.
## How to Contribute

Expand All @@ -24,7 +24,7 @@

- It is recommended to keep the `main` branch of your fork updated with the upstream repository.
- Configure [Syncing a Fork](https://help.github.com/articles/configuring-a-remote-for-a-fork/):
- `git remote add upstream https://github.com/crossplatformkorea/CPK-UI`
- `git remote add upstream https://github.com/crossplatformkorea/cpk-ui`
- Verify with `git remote -v`
- Fetch branches from the upstream repository: `git fetch upstream`
- Create a new branch before submitting a PR: `git checkout -b [feature_name]`
Expand All @@ -33,7 +33,7 @@

2. Clone your forked repository:
```
git clone https://github.com/<your-github-username>/CPK-UI.git
git clone https://github.com/<your-github-username>/cpk-ui.git
```
3. Install dependencies:
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CPK-UI
# cpk-ui

React Native UI components for [Expo](https://expo.dev).

Expand Down
6 changes: 3 additions & 3 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ export default {
expo: {
plugins: [['expo-font', {fonts: ['main/uis/Icon/*']}]],
experiments: {
baseUrl: '/CPK-UI',
baseUrl: '/cpk-ui',
},
name: 'CPK-UI',
slug: 'CPK-UI',
name: 'cpk-ui',
slug: 'cpk-ui',
privacy: 'public',
platforms: ['ios', 'android', 'web'],
orientation: 'default',
Expand Down
4 changes: 2 additions & 2 deletions lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"publish:next": "npm publish <package>.tgz --tag next"
},
"bugs": {
"url": "https://github.com/crossplatformkorea/CPK-UI/issues"
"url": "https://github.com/crossplatformkorea/cpk-ui/issues"
},
"homepage": "https://github.com/crossplatformkorea/CPK-UI#readme",
"homepage": "https://github.com/crossplatformkorea/cpk-ui#readme",
"peerDependencies": {
"@emotion/native": ">=11.0.0",
"@emotion/react": ">=11.0.0",
Expand Down
2 changes: 1 addition & 1 deletion web-build-postinstall.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sed -i 's/\/CPK-UI/./g' dist/index.html
sed -i 's/\/cpk-ui/./g' dist/index.html
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = async (env, argv) => {
{
...env,
babel: {
dangerouslyAddModulePathsToTranspile: ['CPK-UI', '@CPK-UI'],
dangerouslyAddModulePathsToTranspile: ['cpk-ui', '@cpk-ui'],
},
},
argv,
Expand Down

0 comments on commit dc8eb3d

Please sign in to comment.