File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish to npm on Release
2
+
3
+ on :
4
+ release :
5
+ types : [created]
6
+
7
+ jobs :
8
+ publish-npm :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout repository
12
+ uses : actions/checkout@v3
13
+
14
+ - name : Set up Node.js
15
+ uses : actions/setup-node@v3
16
+ with :
17
+ node-version : ' 16'
18
+ registry-url : ' https://registry.npmjs.org'
19
+
20
+ - name : Install dependencies
21
+ run : npm install
22
+
23
+ # Optional: Run tests or build steps here
24
+
25
+ - name : Publish to npm
26
+ run : npm publish --access=public
27
+ env :
28
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"editor.defaultFormatter" : " esbenp.prettier-vscode" ,
3
- "editor.codeActionsOnSave" : {"source.fixAll" : true },
3
+ "editor.codeActionsOnSave" : {
4
+ "source.fixAll" : " explicit"
5
+ },
4
6
"editor.formatOnSave" : true ,
5
7
"files.trimTrailingWhitespace" : true ,
6
8
"markdown.extension.italic.indicator" : " _" ,
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " @kinde-oss/kinde-sveltekit-sdk " ,
2
+ "name" : " @kinde-oss/kinde-auth-sveltekit " ,
3
3
"version" : " 1.2.0" ,
4
4
"description" : " Kinde SvelteKit SDK" ,
5
5
"scripts" : {
44
44
"svelte" : " ^4.0.0"
45
45
},
46
46
"dependencies" : {
47
- "@kinde-oss/kinde-typescript-sdk" : " ^2.2.3 "
47
+ "@kinde-oss/kinde-typescript-sdk" : " ^2.4.0 "
48
48
},
49
49
"devDependencies" : {
50
50
"@playwright/test" : " ^1.28.1" ,
You can’t perform that action at this time.
0 commit comments