Skip to content

Commit c40a12c

Browse files
authored
hotfix: exclude dist/ and schemas from relay compiler (#307)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes * **Chores** * Version bumped to 2.1.14 * Updated build configuration to optimize the relay compiler by excluding unnecessary build artifacts and schema files from processing <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 7f33296 commit c40a12c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

packages/config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @baseapp-frontend/config
22

3+
## 2.1.14
4+
5+
### Patch Changes
6+
7+
- hotfix: exclude dist/ and schemas from relay compiler
8+
39
## 2.1.13
410

511
### Patch Changes

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@baseapp-frontend/config",
33
"description": "Reusable configurations for eslint, prettier, jest and relay",
4-
"version": "2.1.13",
4+
"version": "2.1.14",
55
"files": [
66
".eslintrc.js",
77
".eslintrc-with-restricted-paths.js",

packages/config/relay.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ module.exports = {
77
'**/__generated__/**',
88
'**/.app-templates/**',
99
'**/cypress/**',
10+
'**/dist/**', // Exclude built artifacts
11+
'**/schema.graphql', // Exclude schemas
1012
],
1113
language: 'typescript',
1214
artifactDirectory: './__generated__',

0 commit comments

Comments
 (0)