Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
aexol committed Jul 24, 2024
1 parent b042bd6 commit 0f30a14
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 112 deletions.
115 changes: 13 additions & 102 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"./packages/playground"
],
"devDependencies": {
"@types/node-fetch": "^2.6.4",
"@types/node": "^20.4.5",
"@types/ws": "^8.5.5"
}
}
4 changes: 2 additions & 2 deletions packages/playground/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground2",
"source": "src/index.html",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"type": "module",
"scripts": {
Expand Down
6 changes: 2 additions & 4 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mailik/sdk",
"version": "0.0.6",
"version": "0.0.7",
"description": "",
"main": "lib/index.js",
"type": "module",
Expand All @@ -11,8 +11,6 @@
"author": "aexol-studio",
"license": "MIT",
"dependencies": {
"@types/node": "^20.4.5",
"node-fetch": "^3.3.2",
"ws": "^8.13.0"
"cross-fetch": "^4.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/sdk/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fetch from "cross-fetch";
const API = "https://backend.mailik.dev/graphql";
const API = "https://api.mailik.dev/graphql";

type MailInputType = { body: string; subject: string; replyTo: string };

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"sourceMap": true,
"target": "ESNext",
"module": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"experimentalDecorators": true,
"skipLibCheck": true,
Expand Down

0 comments on commit 0f30a14

Please sign in to comment.