Skip to content

Commit

Permalink
changes entry points
Browse files Browse the repository at this point in the history
  • Loading branch information
tochman committed Dec 18, 2023
1 parent 72015eb commit ee5adc4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
# Medical UI Components
# Medical UI Components

## Usage

### `.yarnrc`` Configuration:

Specifies the registry for the @agileventures scope to use GitHub Packages:

```bash
"@agileventures:registry" "https://npm.pkg.github.com"
```

### `.npmrc`` Configuration:

Includes an authentication token, which appears to be necessary even for public packages in this case:

```bash
//npm.pkg.github.com/:\_authToken=token
```

The token provides authentication for operations against the GitHub Packages registry.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"name": "@AgileVentures/medical_ui_library",
"private": false,
"version": "0.0.5",
"version": "0.1.0",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"main": "dist/medical_ui_library.umd.cjs",
"module": "dist/medical_ui_library.js",
"files": [
"dist"
],
Expand Down

0 comments on commit ee5adc4

Please sign in to comment.