Skip to content

Commit 7fa7939

Browse files
committed
chore(release): 1.0.0-rc.0
1 parent 3d89901 commit 7fa7939

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.github/workflows/test_and_release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,12 @@ jobs:
4040
version: 7
4141
- name: Install dependencies
4242
run: pnpm install
43+
working-directory: ./svelte-cloudinary
44+
- name: Build package
45+
run: pnpm package
46+
working-directory: ./svelte-cloudinary
4347
- name: Release
4448
env:
4549
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4650
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
47-
run: npx semantic-release --branches main
51+
run: npx semantic-release

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@
99
"@semantic-release/changelog": "^6.0.1",
1010
"@semantic-release/git": "^10.0.1",
1111
"semantic-release": "^19.0.5"
12+
},
13+
"publishConfig": {
14+
"tag":"rc":"rc"
1215
}
1316
}

svelte-cloudinary/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"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",
56
"scripts": {
67
"dev": "vite dev",
78
"build": "vite build && npm run package",
@@ -19,7 +20,7 @@
1920
"types": "./dist/index.d.ts",
2021
"svelte": "./dist/index.js"
2122
},
22-
".package.json":"./package.json"
23+
".package.json": "./package.json"
2324
},
2425
"files": [
2526
"dist",

svelte-cloudinary/src/lib/helpers/getCldImageUrl.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export interface GetCldImageUrl {
2525
* based on the configuration passed to the function
2626
* @returns string
2727
*/
28-
console.log(import.meta.env)
2928
export function getCldImageUrl(
3029
options: ImageOptions,
3130
config?: ConfigOptions,

0 commit comments

Comments
 (0)