Skip to content

Commit

Permalink
Merge pull request #2 from nevermined-io/fix/package-build
Browse files Browse the repository at this point in the history
fix: added prepublishOnly script
  • Loading branch information
r-marques authored Feb 21, 2024
2 parents ce65f5f + 2912ac4 commit 01eff8a
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 01eff8a

Please sign in to comment.