Skip to content

Commit

Permalink
v0.0.38
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Jul 24, 2024
1 parent 487b823 commit 1e30d7a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"repository": "github:CartoDB/carto-api-client",
"author": "Don McCurdy <[email protected]>",
"packageManager": "[email protected]",
"version": "0.0.37",
"version": "0.0.38",
"license": "MIT",
"publishConfig": {
"access": "public",
Expand Down Expand Up @@ -39,7 +39,10 @@
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"clean": "rimraf build/*",
"prepack": "yarn clean && yarn build",
"prepublish": "yarn lint && yarn test"
"prepublish": "yarn prepublish:test && yarn prepublish:tag && yarn prepublish:push",
"prepublish:test": "yarn lint && yarn test",
"prepublish:tag": "TAG=v$npm_package_version && git add -u && git commit -m $TAG && git tag -a $TAG -m $TAG",
"prepublish:push": "git push && git push --tags"
},
"files": [
"build",
Expand Down

0 comments on commit 1e30d7a

Please sign in to comment.