Skip to content

Commit

Permalink
Add macro to publish alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Jun 25, 2024
1 parent eb79e8a commit d83ee29
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "@carto/api-client",
"private": true,
"version": "0.0.1-0",
"publishConfig": {
"access": "public",
"tag": "alpha"
},
"packageManager": "[email protected]",
"author": "Don McCurdy <[email protected]>",
"license": "UNLICENSED",
Expand Down Expand Up @@ -31,7 +35,11 @@
"coverage": "vitest run --coverage",
"lint": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --check",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"clean": "rimraf build/*"
"clean": "rimraf build/*",
"version": "git add -u",
"prepack": "yarn clean && yarn build",
"prepublish": "yarn lint && yarn test",
"postpublish": "git push && git push --tags"
},
"files": [
"build",
Expand Down Expand Up @@ -76,5 +84,6 @@
"vite": "^5.2.10",
"vitest": "1.6.0",
"vue": "^3.4.27"
}
},
"stableVersion": "0.0.0"
}

0 comments on commit d83ee29

Please sign in to comment.