Skip to content

Commit

Permalink
fix: added prepublishOnly script
Browse files Browse the repository at this point in the history
  • Loading branch information
r-marques committed Feb 21, 2024
1 parent c149618 commit d7ebaea
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nevermined-io/payments",
"version": "0.1.0",
"version": "0.1.1",
"description": "Typescript SDK to interact with the Nevermined Payments Protocol",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -11,10 +11,14 @@
"author": "Nevermined <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/nevermined-io/payments",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build",
"build": "tsc",
"lint": "eslint ./src",
"format": "prettier --check ./src"
"format": "prettier --check ./src",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"devDependencies": {
Expand Down

0 comments on commit d7ebaea

Please sign in to comment.