We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66b9421 commit 1146196Copy full SHA for 1146196
2 files changed
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "1.0.4",
+ "version": "1.0.5",
3
"name": "@elfsquad/cli",
4
"main": "dist/index.js",
5
"scripts": {
src/extension.ts
@@ -96,7 +96,7 @@ const publish = async () => {
96
97
// 4. Upload the zip file to the server
98
const accessToken = await getAccessToken()
99
- const url = 'http://localhost:5101/api/2/extensions'
+ const url = 'https://api.elfsquad.io/api/2/extensions'
100
const zipBlob = new Blob([zipContent], { type: 'application/zip' });
101
102
const formData = new FormData()
0 commit comments