Skip to content

Commit

Permalink
Chore/package release (#503)
Browse files Browse the repository at this point in the history
* chore: update version tasks to create release branch first

* chore: move npm package to Ubilabs organization
  • Loading branch information
plumdumpling committed Aug 7, 2023
1 parent f08f368 commit d4ebcc7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"name": "react-geosuggest",
"name": "@ubilabs/react-geosuggest",
"version": "2.15.0",
"description": "A React autosuggest for the Google Maps Places API.",
"main": "module/Geosuggest.umd.js",
"module": "module/Geosuggest.esm.js",
"author": "Robert Katzki <[email protected]>",
"homepage": "https://github.com/ubilabs/react-geosuggest",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -86,8 +85,8 @@
"release:major": "npm version major -m \"chore(release): version %s\"",
"changelog": "conventional-changelog-generator",
"preversion": "npm test",
"version": "npm run build:browser && npm run changelog && git add .",
"postversion": "git push && git push --tags && npm run publish:example",
"version": "npm run build:browser && npm run changelog && git checkout -b chore/release-${npm_package_version} && git add .",
"postversion": "git push -u origin chore/release-${npm_package_version} && git push --tags --no-verify",
"publish:example": "gh-pages -d example/dist"
},
"readmeFilename": "README.md",
Expand Down

0 comments on commit d4ebcc7

Please sign in to comment.