Skip to content

Commit

Permalink
Attempt to fix release build
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin committed Apr 18, 2024
1 parent f156263 commit 005d55a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cowprotocol/cms-parent",
"version": "0.1.0-rc.18",
"version": "0.1.0-rc.21",
"description": "Cow Protocol CMS",
"private": true,
"license": "(MIT OR Apache-2.0)",
Expand All @@ -9,10 +9,12 @@
"start": "strapi start",
"build": "npm run build:strapi && npm run build:lib",
"build:strapi": "strapi build",
"build:lib": "npm run lib:update-version && npm run types && npx tsc -p lib/tsconfig.json",
"publish:lib": "scripts/publish-lib.sh",
"build:lib": "npm run clean:clean && npm run gen:types && npm run compile:lib",
"clean:clean": "rimraf lib/dist",
"gen:types": "npx openapi-typescript src/extensions/documentation/documentation/1.0.0/full_documentation.json -o src/gen/types.ts",
"compile:lib": "npx tsc -p lib/tsconfig.json",
"strapi": "strapi",
"types": "npx openapi-typescript src/extensions/documentation/documentation/1.0.0/full_documentation.json -o src/gen/types.ts",
"publish:lib": "scripts/publish-lib.sh",
"prepublishOnly": "echo '❌ ERROR: The lib should be published from \"lib\" directory. Read README for more information.' && exit 99"
},
"dependencies": {
Expand Down

0 comments on commit 005d55a

Please sign in to comment.