Skip to content

Commit

Permalink
fix: fixed folder name casing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardojrmcom committed Jan 11, 2022
1 parent 7007b2d commit 7287261
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 27 deletions.
65 changes: 41 additions & 24 deletions README.md
Expand Up @@ -23,7 +23,7 @@

### <b>Bootstrap</b>

```ts
```tsx
npx @ricardo-jrm/supernova
```

Expand Down Expand Up @@ -51,30 +51,22 @@ Publish to GitHub (Public)

<br />

### <b>Dev Dependencies</b>

- `Typescript`
- `React`
- `Prettier`
- `ESLint`
- `Commit Lint`
- `Lint Staged`
- `Husky`
- `Jest`
- `React Testing Library`
- `Storybook`
- `Webpack`
- `Semantic Release`
---

<br />

---
### <b>Project</b>

- [Project Page](https://www.notion.so/l1b3r/supernova-382adadc317c4ec189b6643bcdfffc09)
- [M0: MVP](https://www.notion.so/l1b3r/M0-MVP-afcf4afd5c054cdb9650f7353780c79a)
- [Source Code](https://github.com/ricardo-jrm/supernova)
- [Releases Page](https://github.com/ricardo-jrm/supernova/releases)

<br />

### <b>Install</b>

```ts
```tsx
npm install @ricardo-jrm/supernova

yarn add @ricardo-jrm/supernova
Expand All @@ -84,7 +76,13 @@ yarn add @ricardo-jrm/supernova

### <b>Usage</b>

```ts
```tsx
// component
import {
ExampleComponent,
ExampleComponentProps,
} from '@ricardo-jrm/supernova';

// hook
import { useExampleHook, ExampleHookType } from '@ricardo-jrm/supernova';

Expand All @@ -95,18 +93,37 @@ import {
ExampleContextType,
} from '@ricardo-jrm/supernova';

// component
import {
ExampleComponent,
ExampleComponentProps,
} from '@ricardo-jrm/supernova';

// provider
import { ExampleProvider, ExampleProviderProps } from '@ricardo-jrm/supernova';
```

<br />

### <b>Project Dependencies</b>

- <b>TS Package Boilerplate: [🟪 @ricardo-jrm/nova](https://github.com/ricardo-jrm/nova)</b>
- <b>React Module Boilerplate: [🟣 @ricardo-jrm/supernova](https://github.com/ricardo-jrm/supernova)</b>

<br />

### <b>Dev Dependencies</b>

- `Yarn`
- `Typescript`
- `React`
- `Prettier`
- `ESLint`
- `Commit Lint`
- `Lint Staged`
- `Husky`
- `Jest`
- `React Testing Library`
- `Storybook`
- `Webpack`
- `Semantic Release`

<br />

---

<br />
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "@ricardo-jrm/supernova",
"description": "React Module Boilerplate",
"version": "0.0.6-development",
"version": "0.0.7-development",
"bin": "bin.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/index.ts
@@ -1,5 +1,5 @@
export { ExampleComponent } from './components/_Example';
export type { ExampleComponentProps } from './components/_Example';
export { ExampleComponent } from './components/Example';
export type { ExampleComponentProps } from './components/Example';

export { useExampleHook } from './hooks/useExampleHook';
export type { ExampleHookType } from './hooks/useExampleHook';
Expand Down

0 comments on commit 7287261

Please sign in to comment.