Skip to content

Commit

Permalink
Adjustment in README
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelmlins committed Jan 22, 2020
1 parent 2a91c1d commit 1899c61
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ cd my-dependency
npm start
```

## How to create a dependency or library?
## Creating an dependency or library?

Requires version equal to or later than Node 10, choose from the following options to create a dependency or library:

### Yarn

Expand All @@ -40,6 +42,33 @@ npx create-react-dependency my-dependency
npm init create-react-dependency my-dependency
```

## File Structure

File structure generated from the create-react-dependency project

```
my-dependency
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── dev
│ ├── App.js
│ ├── index.css
│ ├── index.html
│ ├── index.js
│ └── logo.png
└── lib
├── index.cs
├── index.js
└── Lib.js
```

## Projects

- [Create React Dependency](https://github.com/andrelmlins/create-react-dependency/blob/master/packages/create-react-dependency/README.md)
Expand Down

0 comments on commit 1899c61

Please sign in to comment.