File tree Expand file tree Collapse file tree 3 files changed +675
-13
lines changed Expand file tree Collapse file tree 3 files changed +675
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ concurrency : ${{ github.workflow }}-${{ github.ref }}
9
+
10
+ jobs :
11
+ release :
12
+ name : Release
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout Repo
16
+ uses : actions/checkout@v3
17
+
18
+ - name : Setup Node.js 20
19
+ uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 20
22
+
23
+ - name : Install Dependencies
24
+ run : pnpm install
25
+
26
+ - name : Create Release Pull Request
27
+ uses : changesets/action@v1
28
+ env :
29
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cdn-cache-control" ,
3
3
"version" : " 1.0.0" ,
4
- "description" : " " ,
4
+ "description" : " Easy, opinionated CDN cache header handling" ,
5
+ "homepage" : " https://github.com/ascorbic/cdn-cache-control" ,
6
+ "repository" : " ascorbic/cdn-cache-control" ,
5
7
"main" : " dist/index.js" ,
6
8
"type" : " module" ,
7
9
"types" : " dist/index.d.ts" ,
49
51
"license" : " MIT" ,
50
52
"devDependencies" : {
51
53
"@arethetypeswrong/cli" : " ^0.15.3" ,
54
+ "@changesets/cli" : " ^2.27.7" ,
52
55
"@types/node" : " ^20.14.2" ,
53
56
"prettier" : " ^3.3.1" ,
54
57
"publint" : " ^0.2.8" ,
55
58
"tsdoc-markdown" : " ^0.6.0" ,
56
59
"tsup" : " ^8.1.0" ,
57
- "typescript" : " 5.5.0-beta "
60
+ "typescript" : " ^ 5.5.3 "
58
61
},
59
62
"packageManager" : " pnpm@8.14.0+sha1.bb42032ff80dba5f9245bc1b03470d2fa0b7fb2f"
60
- }
63
+ }
You can’t perform that action at this time.
0 commit comments