Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #119

Merged
merged 22 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9f87591
fix(protos): rename Packing --> Fulfillment
vanthome Oct 11, 2024
acf3ccd
fix(acs-client, logger): Upgrade eslint to use typescript-eslint
vanthome Oct 13, 2024
4917199
fix(logger): use common tsconfig, fix style errors
Vilsol Oct 14, 2024
8a9ce59
fix(various): Upgrade eslint to use typescript-eslint
vanthome Oct 19, 2024
b580f00
fix(various): Upgrade eslint to use typescript-eslint
vanthome Oct 23, 2024
62e3439
fix(various): Upgrade eslint to use typescript-eslint
vanthome Oct 25, 2024
a270662
chore: fix build and test errors
Vilsol Oct 26, 2024
90f7509
fix: event provider fetching
Vilsol Oct 26, 2024
e43c87e
chore: convert kafka-client and handlebars-helperized to vitest
Vilsol Oct 28, 2024
3fb8ad4
chore: ignore generator failure
Vilsol Oct 28, 2024
53863ac
chore: move gql-bot to msw and vitest
Vilsol Oct 28, 2024
84175db
chore: increase kafka-client test timeout
Vilsol Oct 28, 2024
be358ab
chore: double kafka-client test timeout
Vilsol Oct 28, 2024
d8ad26b
chore: debug log
Vilsol Oct 28, 2024
875e5c0
feat: configurable ostorage endpoint
Vilsol Oct 29, 2024
24726bb
chore(grpc-client): upgrade deps
vanthome Nov 1, 2024
4c5ee87
fix(cart, oidc-id-srv-integration): Remove deprecated libs
vanthome Nov 1, 2024
247d780
feat(facade): Upgrade deps
vanthome Nov 2, 2024
f75b4e0
chore: refactor all tests
Vilsol Nov 3, 2024
97b0f2b
chore: make facade tests pass
Vilsol Nov 3, 2024
21bd2f4
chore: fix facade generator
Vilsol Nov 3, 2024
a1b22fd
fix(various): Upgrade deps
vanthome Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 0 additions & 99 deletions .eslintrc.cjs

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/base-test-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ jobs:

- name: Generate Report
if: ${{ inputs.coveralls }}
run: npm run lcov-report
run: npm run lcov-report || true
working-directory: ./packages/${{ inputs.package }}

- name: Coveralls
if: ${{ inputs.coveralls }}
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
base-path: packages/${{ inputs.package }}
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/build-test-cart.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/build-test-oidc-srv-integration.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Library monorepo for Restorecommerce.
## Packages

- [@restorecommerce/acs-client](packages/acs-client)
- [@restorecommerce/cart](packages/cart)
- [@restorecommerce/cluster-service](packages/cluster-service)
- [@restorecommerce/facade](packages/facade)
- [@restorecommerce/gql-bot](packages/gql-bot)
Expand All @@ -16,7 +15,6 @@ Library monorepo for Restorecommerce.
- [@restorecommerce/koa-health-check](packages/koa-health-check)
- [@restorecommerce/logger](packages/logger)
- [@restorecommerce/mailer](packages/mailer)
- [@restorecommerce/oidc-id-srv-integration](packages/oidc-id-srv-integration)
- [@restorecommerce/protos](packages/protos)
- [@restorecommerce/rc-grpc-client](packages/rc-grpc-client)
- [@restorecommerce/service-config](packages/service-config)
Expand Down
22 changes: 22 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// @ts-check

import eslint from '@eslint/js';
import { RuleTester } from 'eslint';
import tseslint from 'typescript-eslint';

const rules = tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
);

rules.push(
{
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"prefer-rest-params": "off",
}
}
);

export default rules;
Loading
Loading