Skip to content

Commit

Permalink
build(ripple): add changelog, build & publish package
Browse files Browse the repository at this point in the history
  • Loading branch information
lovrozagar committed Oct 26, 2024
1 parent a9ab667 commit 3a02043
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 28 deletions.
7 changes: 7 additions & 0 deletions src/packages/components/ripple/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @renderui/ripple

## 1.0.0

### Patch changes

- Added ripple component
73 changes: 45 additions & 28 deletions src/packages/components/ripple/package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,56 @@
{
"author": {
"email": "[email protected]",
"name": "Lovro Žagar"
},
"devDependencies": {
"author": {
"email": "[email protected]",
"name": "Lovro Žagar"
},
"devDependencies": {
"@renderui/lazy-motion": ">=1.0.0",
"@renderui/sub-layer": ">=1.0.0",
"@renderui/utils": ">=0.2.6",
"@renderui/hooks": ">=1.0.0",
"bunchee": "^5.5.1",
"framer-motion": "^11.11.10",
"react": "19.0.0-rc-a960b92c-20240819",
"react-dom": "19.0.0-rc-a960b92c-20240819",
"types-react": "^19.0.0-rc.1",
"types-react-dom": "^19.0.0-rc.1",
"typescript": "^5.5.4"
},
"license": "MIT",
"name": "@renderui/ripple",
"peerDependencies": {
"react": "19.0.0-rc-a960b92c-20240819",
"react-dom": "19.0.0-rc-a960b92c-20240819",
"types-react": "^19.0.0-rc.1",
"types-react-dom": "^19.0.0-rc.1",
"typescript": "^5.5.4"
},
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"files": ["dist"],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"name": "@renderui/ripple",
"peerDependencies": {
"@renderui/lazy-motion": ">=1.0.0",
"@renderui/sub-layer": ">=1.0.0",
"@renderui/hooks": ">=1.0.0",
"@renderui/utils": ">=0.2.6",
"@renderui/hooks": ">=1.0.0",
"framer-motion": "^11.11.10",
"react": ">=18",
"react-dom": ">=18"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/lovrozagar/renderui"
},
"scripts": {
"build": "bunchee -m"
},
"version": "0.0.1"
}
"react": ">=18",
"react-dom": ">=18"
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovrozagar/renderui.git"
},
"scripts": {
"build": "bunchee -m"
},
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"version": "1.0.0"
}

0 comments on commit 3a02043

Please sign in to comment.