Skip to content

Commit c18edd6

Browse files
[Fix] Format Everything (#64)
1 parent 417893d commit c18edd6

File tree

27 files changed

+6912
-4250
lines changed

27 files changed

+6912
-4250
lines changed

.github/workflows/build-packages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup NodeJS
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version-file: ".nvmrc"
19+
node-version-file: '.nvmrc'
2020

2121
- uses: pnpm/action-setup@v2
2222
name: Install pnpm
@@ -27,7 +27,7 @@ jobs:
2727
- name: Get pnpm store directory
2828
shell: bash
2929
run: |
30-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
30+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3131
3232
- uses: actions/cache@v3
3333
name: Setup pnpm cache

.github/workflows/deploy-docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: Deploy docs to GitHub Pages
22

33
on:
44
push:
5-
branches: ["docs", "main"]
5+
branches: ['docs', 'main']
66

77
permissions:
88
contents: read
99
pages: write
1010
id-token: write
1111

1212
concurrency:
13-
group: "pages"
13+
group: 'pages'
1414
cancel-in-progress: false
1515

1616
jobs:
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup NodeJS
3232
uses: actions/setup-node@v4
3333
with:
34-
node-version-file: ".nvmrc"
34+
node-version-file: '.nvmrc'
3535
- uses: pnpm/action-setup@v2
3636
name: Install pnpm
3737
with:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Get pnpm store directory
4141
shell: bash
4242
run: |
43-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
43+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
4444
- uses: actions/cache@v3
4545
name: Setup pnpm cache
4646
with:

.github/workflows/dev-packages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup NodeJS
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version-file: ".nvmrc"
18+
node-version-file: '.nvmrc'
1919
- uses: pnpm/action-setup@v2
2020
name: Install pnpm
2121
with:
@@ -26,7 +26,7 @@ jobs:
2626
- name: Get pnpm store directory
2727
shell: bash
2828
run: |
29-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
29+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3030
- uses: actions/cache@v3
3131
name: Setup pnpm cache
3232
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version-file: ".nvmrc"
20+
node-version-file: '.nvmrc'
2121
- uses: pnpm/action-setup@v2
2222
name: Install pnpm
2323
with:
@@ -26,7 +26,7 @@ jobs:
2626
- name: Get pnpm store directory
2727
shell: bash
2828
run: |
29-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
29+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3030
- uses: actions/cache@v3
3131
name: Setup pnpm cache
3232
with:

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ PowerSync is a service and set of SDKs that keeps Postgres databases in sync wit
1111
## Monorepo Structure: Packages
1212

1313
- [packages/powersync-sdk-react-native](./packages/powersync-sdk-react-native/README.md)
14+
1415
- React Native SDK implementation (extension of `packages/powersync-sdk-common`)
1516

1617
- [packages/powersync-sdk-web](./packages/powersync-sdk-web/README.md)
18+
1719
- JS Web SDK implementation (extension of `packages/powersync-sdk-common`)
1820

1921
- [packages/powersync-react](./packages/powersync-react/README.md)
22+
2023
- React integration for PowerSync.
2124

2225
- [packages/powersync-attachments](./packages/powersync-attachments/README.md)
26+
2327
- Attachments helper package for React Native.
2428

2529
- [packages/powersync-sdk-common](./packages/powersync-sdk-common/README.md)

demos/example-vite/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ To see it in action:
44

55
1. Make sure to run `pnpm build:packages` in the root directory of this Git repo.
66
2. `pnpm start`
7-
3. Open the localhost URL in the browser displayed in the terminal output.
7+
3. Open the localhost URL in the browser displayed in the terminal output.

demos/example-vite/src/index.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html>
3-
<head>
4-
<script type="module" src="./index.js"></script>
5-
</head>
6-
<body>Vite bundling test: Check the console to see it in action!</body>
7-
</html>
3+
<head>
4+
<script type="module" src="./index.js"></script>
5+
</head>
6+
<body>
7+
Vite bundling test: Check the console to see it in action!
8+
</body>
9+
</html>

demos/example-webpack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ To see it in action:
44

55
1. Make sure to run `pnpm build:packages` in the root directory of this Git repo.
66
2. `pnpm start`
7-
3. Open the localhost URL in the browser displayed in the terminal output.
7+
3. Open the localhost URL in the browser displayed in the terminal output.

demos/example-webpack/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<html>
2-
3-
<body>Webpack bundling test: Check the console to see it in action!</body>
4-
5-
</html>
2+
<body>
3+
Webpack bundling test: Check the console to see it in action!
4+
</body>
5+
</html>

demos/react-native-supabase-todolist/library/widgets/CameraWidget.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ export const CameraWidget: React.FC<Props> = (props) => {
7676
style={{ ...styles.camera, height: height, width: '100%' }}
7777
type={CameraType.back}
7878
onCameraReady={onReady}
79-
ratio={isAndroid ? '16:9' : undefined}>
79+
ratio={isAndroid ? '16:9' : undefined}
80+
>
8081
<TouchableOpacity onPress={props.onClose} style={styles.backButton}>
8182
<Icon name={'chevron-left'} type={'font-awesome'} color={'white'} />
8283
</TouchableOpacity>

0 commit comments

Comments
 (0)