Skip to content

Commit bcbddc2

Browse files
committed
Merge branch 'main' of https://github.com/o2sdev/openselfservice into fix/reported-bugs-fixing
2 parents d7fd976 + c2d9438 commit bcbddc2

File tree

289 files changed

+13195
-202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

289 files changed

+13195
-202
lines changed

.changeset/cold-trees-look.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
'@o2s/blocks.featured-service-list': patch
3+
'@o2s/blocks.notification-details': patch
4+
'@o2s/blocks.notification-summary': patch
5+
'@o2s/integrations.contentful-cms': patch
6+
'@o2s/blocks.notification-list': patch
7+
'@o2s/blocks.payments-history': patch
8+
'@o2s/blocks.payments-summary': patch
9+
'@o2s/integrations.strapi-cms': patch
10+
'@o2s/utils.api-harmonization': patch
11+
'@o2s/blocks.service-details': patch
12+
'@o2s/blocks.article-search': patch
13+
'@o2s/blocks.orders-summary': patch
14+
'@o2s/blocks.ticket-details': patch
15+
'@o2s/blocks.ticket-summary': patch
16+
'@o2s/integrations.medusajs': patch
17+
'@o2s/blocks.category-list': patch
18+
'@o2s/blocks.order-details': patch
19+
'@o2s/blocks.surveyjs-form': patch
20+
'@o2s/blocks.ticket-recent': patch
21+
'@o2s/configs.integrations': patch
22+
'@o2s/integrations.algolia': patch
23+
'@o2s/integrations.zendesk': patch
24+
'@o2s/blocks.article-list': patch
25+
'@o2s/blocks.invoice-list': patch
26+
'@o2s/blocks.product-list': patch
27+
'@o2s/blocks.service-list': patch
28+
'@o2s/blocks.user-account': patch
29+
'@o2s/integrations.mocked': patch
30+
'@o2s/blocks.quick-links': patch
31+
'@o2s/blocks.ticket-list': patch
32+
'create-o2s-app': patch
33+
'@o2s/integrations.redis': patch
34+
'@o2s/blocks.order-list': patch
35+
'@o2s/modules.surveyjs': patch
36+
'@o2s/blocks.category': patch
37+
'@o2s/blocks.article': patch
38+
'@o2s/utils.frontend': patch
39+
'@o2s/api-harmonization': patch
40+
'@o2s/utils.logger': patch
41+
'@o2s/blocks.faq': patch
42+
'@o2s/telemetry': patch
43+
'@o2s/frontend': patch
44+
'@o2s/ui': patch
45+
'@o2s/docs': patch
46+
---
47+
48+
fix: added missing Eslint command to list-staged

.changeset/icy-snakes-swim.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
'@o2s/blocks.feature-section-grid': minor
3+
'@o2s/blocks.feature-section': minor
4+
'@o2s/blocks.pricing-section': minor
5+
'@o2s/blocks.document-list': minor
6+
'@o2s/blocks.media-section': minor
7+
'@o2s/blocks.hero-section': minor
8+
'@o2s/integrations.mocked': minor
9+
'@o2s/blocks.cta-section': minor
10+
'@o2s/blocks.bento-grid': minor
11+
'@o2s/framework': minor
12+
'@o2s/ui': minor
13+
---
14+
15+
added new blocks from dxp-starter-kit app
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': () => 'tsc --noEmit',
3+
'*.{js,jsx,ts,tsx}': () => ['tsc --noEmit', 'eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
44
};

apps/docs/lint-staged.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': () => 'tsc --noEmit',
3+
'*.{js,jsx,ts,tsx}': () => ['tsc --noEmit', 'eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
44
};
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
const buildEslintCommand = (filenames) =>
2-
`next lint --fix --file ${filenames.join(' --file ')}`;
3-
41
export default {
52
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
6-
'*.{js,jsx,ts,tsx}': [buildEslintCommand],
3+
'*.{js,jsx,ts,tsx}': ['eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
74
};

lint-staged.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
'*.{js,jsx,ts,tsx,css,scss}': ['prettier --write'],
3-
'*.{js,jsx,ts,tsx}': () => 'tsc --noEmit',
3+
'*.{js,jsx,ts,tsx}': () => ['tsc --noEmit', 'eslint "{src,apps,libs,test}/**/*.{ts,tsx}" --fix'],
44
};

0 commit comments

Comments
 (0)