-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: possibly fixing readme in npm
- Loading branch information
1 parent
293433b
commit e2f584e
Showing
2 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ dist/ | |
.DS_Store | ||
Thumbs.db | ||
UserInterfaceState.xcuserstate | ||
.env | ||
.env | ||
|
||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
{ | ||
"name": "@stencil-community/react-output-target", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "React component wrappers for Stencil web components", | ||
"license": "MIT", | ||
"homepage": "https://github.com/stencil-community/stencil-react-output-target#README", | ||
"author": "Sean Perkins <[email protected]>", | ||
"homepage": "https://github.com/stencil-community/stencil-react-output-target", | ||
|
||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stencil-community/stencil-react-output-target", | ||
"directory": "packages/react-output-target" | ||
}, | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build && vue-tsc --emitDeclarationOnly && cp ../../README.md dist/README.md", | ||
"build": "vite build && vue-tsc --emitDeclarationOnly && pnpm copy:readme", | ||
"copy:readme": "cp ../../README.md dist/README.md && cp ../../README.md .", | ||
"preview": "vite preview", | ||
"test": "vitest run", | ||
"test:watch": "vitest", | ||
|
@@ -33,9 +40,5 @@ | |
"require": "./dist/stencil-react-output-target.umd.js" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stencil-community/stencil-react-output-target", | ||
"directory": "packages/react-output-target" | ||
} | ||
"author": "Stencil Community" | ||
} |