Skip to content

Commit a2aed70

Browse files
committed
refactor: rework and improve the whole repo structure
1 parent 7751132 commit a2aed70

Some content is hidden

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

49 files changed

+43
-45
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: oven-sh/setup-bun@v2
16-
- run: bun install --frozen-lockfile --ignore-scripts
16+
- run: bun install --frozen-lockfile
1717
- run: bun run lint
1818
- run: bun run typecheck

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
with:
3131
node-version: 20
3232
- run: npm install -g npm@latest
33-
- run: bun install --frozen-lockfile --ignore-scripts
33+
- run: bun install --frozen-lockfile
3434
- name: Configure Git
3535
run: |
3636
git config user.name "${GITHUB_ACTOR}"
3737
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
3838
- name: Release
39-
working-directory: packages/react-native-bread
39+
working-directory: package
4040
run: bun run release --ci --increment ${{ inputs.version }}
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ coverage/
3434
.env.local
3535

3636
# Auto-generated by prepack
37-
packages/react-native-bread/README.md
37+
package/README.md

example/react-native-bread-example/.gitignore renamed to example/.gitignore

File renamed without changes.

example/README.md

Lines changed: 24 additions & 0 deletions

example/react-native-bread-example/app.json renamed to example/app.json

File renamed without changes.

example/react-native-bread-example/app/(custom)/_layout.tsx renamed to example/app/(custom)/_layout.tsx

File renamed without changes.

example/react-native-bread-example/app/(custom)/index.tsx renamed to example/app/(custom)/index.tsx

File renamed without changes.

example/react-native-bread-example/app/(default)/_layout.tsx renamed to example/app/(default)/_layout.tsx

File renamed without changes.

example/react-native-bread-example/app/(default)/index.tsx renamed to example/app/(default)/index.tsx

File renamed without changes.

0 commit comments

Comments
 (0)