Skip to content

Commit e02eb1b

Browse files
authored
Merge pull request #89 from ClayPulse/Support-remote-workspace
Support remote workspace & support auth on electron and capacitor
2 parents 4a8e0c9 + 747110c commit e02eb1b

File tree

108 files changed

+1841
-2287
lines changed

Some content is hidden

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

108 files changed

+1841
-2287
lines changed

.changeset/pre.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"mode": "pre",
33
"tag": "beta",
44
"initialVersions": {
5-
"@pulse-editor/capacitor-plugin": "0.0.1",
65
"@pulse-editor/mobile": "0.0.1",
76
"@pulse-editor/react-api": "0.1.1-alpha.54",
87
"@pulse-editor/shared-utils": "0.1.1-alpha.54",

.github/workflows/build-desktop.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,7 @@ jobs:
3232

3333
- name: Build shared-utils
3434
run: npm run shared-utils-build
35-
36-
- name: Install capacitor-plugin dependencies
37-
run: npm install --workspace=capacitor-plugin
38-
39-
- name: Build capacitor-plugin
40-
run: npm run capacitor-plugin-build
41-
35+
4236
- name: Install web dependencies
4337
run: npm install --workspace=web
4438

.github/workflows/build-mobile.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Get Keystore
4343
run: |
4444
mkdir ~/.keystore
45-
echo ${{ secrets.ANDROID_KEYSTORE }} | base64 --decode > ~/.keystore/keystore.jks
45+
echo ${{ secrets.ANDROID_KEYSTORE }} | base64 --decode > ~/.keystore/pulse-editor.keystore
4646
4747
- name: Setup Node.js
4848
uses: actions/setup-node@v4
@@ -55,12 +55,6 @@ jobs:
5555
- name: Build shared-utils
5656
run: npm run shared-utils-build
5757

58-
- name: Install capacitor-plugin dependencies
59-
run: npm install --workspace=capacitor-plugin
60-
61-
- name: Build capacitor-plugin
62-
run: npm run capacitor-plugin-build
63-
6458
- name: Install web dependencies
6559
run: npm install --workspace=web
6660

@@ -78,5 +72,5 @@ jobs:
7872
working-directory: mobile
7973

8074
- name: Build Capacitor App
81-
run: npx cap build android --keystorepath ~/.keystore/keystore.jks --keystorepass ${{ secrets.ANDROID_KEYSTORE_PASS }} --androidreleasetype APK
75+
run: npx cap build android --keystorepath ~/.keystore/pulse-editor.keystore --keystorepass ${{ secrets.ANDROID_KEYSTORE_PASS }} --androidreleasetype APK
8276
working-directory: mobile

.github/workflows/build-web.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ jobs:
2828

2929
- name: Build shared-utils
3030
run: npm run shared-utils-build
31-
32-
- name: Install capacitor-plugin dependencies
33-
run: npm install --workspace=capacitor-plugin
34-
35-
- name: Build capacitor-plugin
36-
run: npm run capacitor-plugin-build
3731

3832
- name: Install web dependencies
3933
run: npm install --workspace=web

.github/workflows/release-desktop.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@ jobs:
3030
- name: Build shared-utils
3131
run: npm run shared-utils-build
3232

33-
- name: Install capacitor-plugin dependencies
34-
run: npm install --workspace=capacitor-plugin
35-
36-
- name: Build capacitor-plugin
37-
run: npm run capacitor-plugin-build
38-
3933
- name: Install web dependencies
4034
run: npm install --workspace=web
4135

.github/workflows/release-mobile.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Get Keystore
4040
run: |
4141
mkdir ~/.keystore
42-
echo ${{ secrets.ANDROID_KEYSTORE }} | base64 --decode > ~/.keystore/keystore.jks
42+
echo ${{ secrets.ANDROID_KEYSTORE }} | base64 --decode > ~/.keystore/pulse-editor.keystore
4343
4444
- name: Setup Node.js
4545
uses: actions/setup-node@v4
@@ -52,12 +52,6 @@ jobs:
5252
- name: Build shared-utils
5353
run: npm run shared-utils-build
5454

55-
- name: Install capacitor-plugin dependencies
56-
run: npm install --workspace=capacitor-plugin
57-
58-
- name: Build capacitor-plugin
59-
run: npm run capacitor-plugin-build
60-
6155
- name: Install web dependencies
6256
run: npm install --workspace=web
6357

@@ -75,7 +69,7 @@ jobs:
7569
working-directory: mobile
7670

7771
- name: Build Capacitor App
78-
run: npx cap build android --keystorepath ~/.keystore/keystore.jks --keystorepass ${{ secrets.ANDROID_KEYSTORE_PASS }} --androidreleasetype APK
72+
run: npx cap build android --keystorepath ~/.keystore/pulse-editor.keystore --keystorepass ${{ secrets.ANDROID_KEYSTORE_PASS }} --androidreleasetype APK
7973
working-directory: mobile
8074

8175
- name: Move APK

capacitor-plugin/.eslintignore

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

capacitor-plugin/.gitignore

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

capacitor-plugin/.prettierignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

capacitor-plugin/CONTRIBUTING.md

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

0 commit comments

Comments
 (0)