Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit 94db709

Browse files
authored
Merge pull request #347 from supabase/rc
feat: Release V1
2 parents 06d4347 + a0e6e63 commit 94db709

31 files changed

+9517
-6826
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-node@v2
2020
with:
21-
node-version: '14'
21+
node-version: '16'
2222

2323
- run: |
2424
npm clean-install

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515

1616
- uses: actions/setup-node@v2
1717
with:
18-
node-version: '14'
18+
node-version: '16'
1919

2020
- run: |
2121
npm clean-install
22-
npm run v1:docs
23-
npm run v1:docs:json
22+
npm run docs
23+
npm run docs:json
2424
2525
- name: Publish
2626
uses: peaceiris/actions-gh-pages@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Node
1919
uses: actions/setup-node@v2
2020
with:
21-
node-version: '14'
21+
node-version: '16'
2222

2323
- run: |
2424
npm clean-install

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
node_modules
22
dist
3+
docs/v2
34
*.log
45

56
# nyc
67
coverage
78
.nyc_output
89

9-
.idea
10+
.idea

.releaserc.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"semantic-release-plugin-update-version-in-files",
1010
{
1111
"files": [
12-
"src/lib/version.ts",
13-
"dist/main/lib/version.js",
14-
"dist/main/lib/version.d.ts",
15-
"dist/module/lib/version.js",
16-
"dist/module/lib/version.d.ts"
12+
"src/version.ts",
13+
"dist/main/version.js",
14+
"dist/main/version.d.ts",
15+
"dist/module/version.js",
16+
"dist/module/version.d.ts"
1717
],
1818
"placeholder": "0.0.0-automated"
1919
}

docs/v2/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)