File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 40
40
version : 7
41
41
- name : Install dependencies
42
42
run : pnpm install
43
+ working-directory : ./svelte-cloudinary
44
+ - name : Build package
45
+ run : pnpm package
46
+ working-directory : ./svelte-cloudinary
43
47
- name : Release
44
48
env :
45
49
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
50
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
47
- run : npx semantic-release --branches main
51
+ run : npx semantic-release
Original file line number Diff line number Diff line change 9
9
"@semantic-release/changelog" : " ^6.0.1" ,
10
10
"@semantic-release/git" : " ^10.0.1" ,
11
11
"semantic-release" : " ^19.0.5"
12
+ },
13
+ "publishConfig" : {
14
+ "tag" :"rc" :" rc"
12
15
}
13
16
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " svelte-cloudinary" ,
3
- "version" : " 0.0.1" ,
4
- "license" :" MIT" ,
3
+ "author" : " Matias Hernandez <hola@matiashernandez.dev>" ,
4
+ "version" : " 1.0.0-rc.0" ,
5
+ "license" : " MIT" ,
5
6
"scripts" : {
6
7
"dev" : " vite dev" ,
7
8
"build" : " vite build && npm run package" ,
19
20
"types" : " ./dist/index.d.ts" ,
20
21
"svelte" : " ./dist/index.js"
21
22
},
22
- ".package.json" :" ./package.json"
23
+ ".package.json" : " ./package.json"
23
24
},
24
25
"files" : [
25
26
" dist" ,
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ export interface GetCldImageUrl {
25
25
* based on the configuration passed to the function
26
26
* @returns string
27
27
*/
28
- console . log ( import . meta. env )
29
28
export function getCldImageUrl (
30
29
options : ImageOptions ,
31
30
config ?: ConfigOptions ,
You can’t perform that action at this time.
0 commit comments