Skip to content

Commit e4c9444

Browse files
committed
Do a bunch of updates
1 parent e60a796 commit e4c9444

141 files changed

Lines changed: 6702 additions & 6364 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ node_modules/
99

1010
# Expo
1111
.expo/
12+
android/
1213
dist/
14+
ios/
1315
web-build/
1416

1517
# Xcode

.storybook/main.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,11 @@ const config: StorybookConfig = {
88
{ directory: '../packages/components/src' },
99
{ directory: '../packages/svg/src' },
1010
],
11-
addons: ['@storybook/addon-a11y'],
11+
addons: ['@storybook/addon-a11y', '@storybook/addon-docs'],
1212
framework: '@storybook/react-vite',
1313
core: {
1414
disableTelemetry: true,
1515
},
16-
typescript: {
17-
reactDocgen: false,
18-
},
19-
// eslint-disable-next-line @typescript-eslint/no-shadow
2016
viteFinal: (config) =>
2117
mergeConfig(config, {
2218
plugins: [reactUniversal()],

.storybook/preview.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import { INITIAL_VIEWPORTS } from 'storybook/viewport';
44

55
const preview: Preview = {
66
parameters: {
7+
docs: {
8+
codePanel: true,
9+
},
710
viewport: {
811
viewports: INITIAL_VIEWPORTS,
912
},
Lines changed: 328 additions & 328 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.9.2.cjs
3+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

@types/eslint-config-biome.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
declare module 'eslint-config-biome' {
2+
import type { Linter } from 'eslint';
3+
declare const biome: {
4+
rules: Linter.RulesRecord;
5+
};
6+
export default biome;
7+
}

app/app.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const config: ExpoConfig = {
3535
initialOrientation: 'DEFAULT',
3636
},
3737
],
38+
'react-native-edge-to-edge',
3839
],
3940
};
4041

app/ios/.gitignore

Lines changed: 0 additions & 30 deletions
This file was deleted.

app/ios/.xcode.env

Lines changed: 0 additions & 11 deletions
This file was deleted.

app/ios/Podfile

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)