File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1313 "types" : " ./lib/index.d.ts"
1414 }
1515 },
16- "keywords" : [],
17- "author" : {
18- "name" : " Redocly Inc." ,
19- 20- "url" : " https://redocly.com"
16+ "engines" : {
17+ "node" : " >=18.17.0" ,
18+ "npm" : " >=9.5.0"
2119 },
2220 "license" : " SEE LICENSE IN LICENSE" ,
21+ "repository" : {
22+ "type" : " git" ,
23+ "url" : " https://github.com/Redocly/redocly-cli.git"
24+ },
25+ "homepage" : " https://github.com/Redocly/redocly-cli" ,
26+ "keywords" : [],
2327 "devDependencies" : {
2428 "@types/concat-stream" : " ^2.0.3" ,
2529 "@types/cookie" : " 0.6.0" ,
Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ cd ../../
1919# Update and pack respect-core package
2020cd packages/respect-core
2121jq " .version = \" $VERSION \" " package.json > tmp.json && mv tmp.json package.json
22- jq " .dependencies[\" @redocly/openapi-core\" ] = \" file: ./openapi-core.tgz\" " package.json > tmp.json && mv tmp.json package.json
22+ jq " .dependencies[\" @redocly/openapi-core\" ] = \" ./openapi-core.tgz\" " package.json > tmp.json && mv tmp.json package.json
2323respect_core=$( npm pack | tail -n 1)
2424mv $respect_core ../../respect-core.tgz
2525cd ../../
2626
2727# Update and pack cli package
2828cd packages/cli
2929jq " .version = \" $VERSION \" " package.json > tmp.json && mv tmp.json package.json
30- jq " .dependencies[\" @redocly/openapi-core\" ] = \" file: ./openapi-core.tgz\" " package.json > tmp.json && mv tmp.json package.json
31- jq " .dependencies[\" @redocly/respect-core\" ] = \" file: ./respect-core.tgz\" " package.json > tmp.json && mv tmp.json package.json
30+ jq " .dependencies[\" @redocly/openapi-core\" ] = \" ./openapi-core.tgz\" " package.json > tmp.json && mv tmp.json package.json
31+ jq " .dependencies[\" @redocly/respect-core\" ] = \" ./respect-core.tgz\" " package.json > tmp.json && mv tmp.json package.json
3232cli=$( npm pack | tail -n 1)
3333mv $cli ../../redocly-cli.tgz
3434cd ../../
You can’t perform that action at this time.
0 commit comments