Skip to content

Commit

Permalink
chore: merge V2 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ganchoradkov committed Jan 8, 2025
2 parents 5179b22 + 1463ac8 commit 544ab63
Show file tree
Hide file tree
Showing 85 changed files with 3,406 additions and 1,176 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"no-useless-constructor": "off",
"no-use-before-define": "off",
"curly": "off",
"prefer-promise-reject-errors": "off"
"prefer-promise-reject-errors": "off",
"import/no-extraneous-dependencies": ["error"]
},
"ignorePatterns": ["dist", "**/node_modules/*"],
"env": {
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ jobs:
env:
TEST_RELAY_URL: ${{ secrets.TEST_RELAY_URL }}
TEST_PROJECT_ID: ${{ secrets.TEST_PROJECT_ID }}
TEST_PROJECT_ID_MOBILE: ${{ vars.TEST_PROJECT_ID_MOBILE }}
TEST_MOBILE_APP_ID: ${{ vars.TEST_MOBILE_APP_ID }}
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish to NPM
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies and build 🔧
run: npm ci && npm run build
- name: Publish package on NPM 📦
run: npm run npm-publish:latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.organizeImports": false
"source.organizeImports": "never"
},
"editor.formatOnSave": true,
"editor.tabSize": 2,
Expand Down
5 changes: 5 additions & 0 deletions funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"opRetro": {
"projectId": "0xf5af54fc0c301d0714cbbba7624a5f82960590b62196780e4aa841f1ce17214b"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/*",
"providers/*"
],
"version": "2.15.1"
"version": "2.17.3"
}
Loading

0 comments on commit 544ab63

Please sign in to comment.