Skip to content

Commit 8b0dff0

Browse files
authored
Chore/import fix stable yarn (#49)
* chore: changeset and import fix * changelog * chore: publish 5.5.6
1 parent f357048 commit 8b0dff0

File tree

8 files changed

+3780
-946
lines changed

8 files changed

+3780
-946
lines changed

.changeset/config.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "master",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,10 @@ test/contracts/types
4040
src/logs/
4141

4242
# yarn
43-
yarn-error.log
43+
yarn-error.log
44+
.yarn/*
45+
!.yarn/patches
46+
!.yarn/plugins
47+
!.yarn/releases
48+
!.yarn/sdks
49+
!.yarn/versions

.yarn/install-state.gz

-301 KB
Binary file not shown.

.yarn/releases/yarn-4.1.0.cjs

+893
Large diffs are not rendered by default.

.yarnrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.1.0.cjs

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# @gelatonetwork/relay-sdk
2+
3+
## 5.5.6
4+
5+
### Patch Changes
6+
7+
- 4bf097a: sideEffects: false
8+
9+
## 5.5.6-next.0
10+
11+
### Patch Changes
12+
13+
- sideEffects: false

package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gelatonetwork/relay-sdk",
3-
"version": "5.5.5",
3+
"version": "5.5.6",
44
"description": "SDK to integrate with Gelato Relay",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -10,7 +10,7 @@
1010
"scripts": {
1111
"build": "rm -rf dist && npx tsc",
1212
"format:check": "prettier --check \"*/**/*.{js,json,md,ts}\"",
13-
"format": "prettier --write */**/*.{js,json,md,ts}",
13+
"format": "prettier --write \"*/**/*.{js,json,md,ts}\"",
1414
"lint": "eslint --cache .",
1515
"prepare": "husky install"
1616
},
@@ -22,6 +22,7 @@
2222
"author": "",
2323
"license": "ISC",
2424
"devDependencies": {
25+
"@changesets/cli": "^2.27.1",
2526
"@tsconfig/recommended": "1.0.2",
2627
"@types/node": "16.18.25",
2728
"@typescript-eslint/eslint-plugin": "^5.59.1",
@@ -47,5 +48,6 @@
4748
"lint-staged": {
4849
"*.{js,json,md,ts}": "yarn format",
4950
"*.{ts,js}": "yarn lint"
50-
}
51+
},
52+
"packageManager": "[email protected]"
5153
}

0 commit comments

Comments
 (0)