File tree Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " chat" ,
3
- "version" : " 0.6.3" ,
4
- "private" : true ,
5
- "scripts" : {
6
- "dev" : " next dev --turbopack" ,
7
- "build" : " next build" ,
8
- "start" : " next start" ,
9
- "lint" : " next lint" ,
10
- "export" : " GITHUB_PAGES=true next build" ,
11
- "serve-static" : " npx serve out" ,
12
- "deploy-gh-pages" : " GITHUB_PAGES=true next build && gh-pages -d out --nojekyll -e chat -f" ,
13
- "storybook" : " storybook dev -p 6006" ,
14
- "build-storybook" : " storybook build"
15
- },
16
2
"dependencies" : {
17
3
"@radix-ui/react-dropdown-menu" : " ^2.1.14" ,
18
4
"@radix-ui/react-slot" : " ^1.2.2" ,
44
30
"tailwindcss" : " ^4" ,
45
31
"tw-animate-css" : " ^1.3.0" ,
46
32
"typescript" : " ^5"
47
- }
33
+ },
34
+ "name" : " chat" ,
35
+ "private" : true ,
36
+ "scripts" : {
37
+ "build" : " next build" ,
38
+ "build-storybook" : " storybook build" ,
39
+ "deploy-gh-pages" : " GITHUB_PAGES=true next build && gh-pages -d out --nojekyll -e chat -f" ,
40
+ "dev" : " next dev --turbopack" ,
41
+ "export" : " GITHUB_PAGES=true next build" ,
42
+ "lint" : " next lint" ,
43
+ "serve-static" : " npx serve out" ,
44
+ "start" : " next start" ,
45
+ "storybook" : " storybook dev -p 6006"
46
+ },
47
+ "version" : " 0.6.3"
48
48
}
Original file line number Diff line number Diff line change 9
9
10
10
version=$( go run main.go --version | awk ' {print $3}' )
11
11
12
- jq --arg version " ${version} " ' .info.version = $version' openapi.json > openapi.json.tmp && mv openapi.json.tmp openapi.json
13
- jq --arg version " ${version} " ' .version = $version' chat/package.json > chat/package.json.tmp && mv chat/package.json.tmp chat/package.json
12
+ jq --sort-keys -- arg version " ${version} " ' .info.version = $version' openapi.json > openapi.json.tmp && mv openapi.json.tmp openapi.json
13
+ jq --sort-keys -- arg version " ${version} " ' .version = $version' chat/package.json > chat/package.json.tmp && mv chat/package.json.tmp chat/package.json
14
14
15
15
echo -n " ${version} "
You can’t perform that action at this time.
0 commit comments