Skip to content

Commit

Permalink
docs: add package publishing guide to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
jukerah committed Apr 30, 2024
1 parent d57ddd4 commit 8c73ec0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Publishing-Guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Publishing Guide

> This is a guide to publishing the package to npm.
#### Step 1: Change the version in **package.json**.

#### Step 2: Change the **CHANGELOG.json** file with changes from the new version.

#### Step 3: Generate the new package.

##### NPM

```bash
npm run build
```

##### YARN

```bash
yarn build
```

#### Step 4: Publish the package to npm.

```bash
npm publish
```

0 comments on commit 8c73ec0

Please sign in to comment.