Skip to content

Commit

Permalink
release setup
Browse files Browse the repository at this point in the history
  • Loading branch information
KaraFox committed Oct 3, 2024
1 parent a71818c commit ef94f75
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{
"name": "react-textarea-autosize",
"name": "@fulcrumapp/react-textarea-autosize",
"description": "textarea component for React which grows with content",
"version": "4.0.0",
"author": {
"name": "Andrey Popp",
"email": "8mayday@gmail.com",
"url": "http://andreypopp.com"
},
"version": "0.0.1",
"author": "",
"homepage": "https://github.com/andreypopp/react-textarea-autosize",
"eslintConfig": {
"extends": "prometheusresearch"
Expand All @@ -16,19 +12,22 @@
"prometheusresearch"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"react",
"react-component",
"textarea",
"grow",
"autosize"
],
"license": "MIT",
"license": "ISC",
"main": "lib/TextareaAutosize.js",
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/andreypopp/react-textarea-autosize.git"
"url": "git://github.com/fulcrumapp/react-textarea-autosize.git"
},
"devDependencies": {
"babel-cli": "^6.7.5",
Expand Down
7 changes: 7 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

export VERSION="$1"

yarn build
gh release create --generate-notes $VERSION
yarn publish --new-version $VERSION

0 comments on commit ef94f75

Please sign in to comment.