Skip to content

Commit 02b8158

Browse files
authored
chore: upgrade editor kit and component relay (#55)
* chore: upgrade editor kit * chore: update workflows * chore: yarn install
1 parent 5631189 commit 02b8158

File tree

19 files changed

+40
-39
lines changed

19 files changed

+40
-39
lines changed

.github/workflows/pr.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 16.x
19+
20+
- name: Enable Corepack (Yarn)
21+
run: corepack enable
1422

1523
- name: Install dependencies
1624
run: yarn install

.github/workflows/publish.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66

77
jobs:
88
Build:
@@ -12,14 +12,18 @@ jobs:
1212
NODE_AUTH_TOKEN: ${{ secrets.PLUGINS_NPM_TOKEN }}
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
token: ${{ secrets.CI_PAT_TOKEN }}
1818
fetch-depth: 0
1919

20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
22-
registry-url: 'https://registry.npmjs.org'
22+
node-version: 16.x
23+
registry-url: "https://registry.npmjs.org"
24+
25+
- name: Enable Corepack (Yarn)
26+
run: corepack enable
2327

2428
- name: Setup git config
2529
run: |
@@ -47,4 +51,4 @@ jobs:
4751
run: yarn run release
4852

4953
- name: Publish
50-
run: yarn run publish
54+
run: yarn run publish

.nvmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
16.20.2
2+
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/com.sncommunity.advanced-checklist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"@reach/visually-hidden": "0.16.0",
100100
"@react-hook/resize-observer": "^1.2.5",
101101
"@reduxjs/toolkit": "1.8.0",
102-
"@standardnotes/editor-kit": "standardnotes/editor-kit#50ffb15c935a297b082eb00ffd031adc05080d7f",
102+
"@standardnotes/editor-kit": "standardnotes/editor-kit#c0743eb4690dcf73aab97da662c3c7e5f8356275",
103103
"@standardnotes/stylekit": "5.23.0",
104104
"@testing-library/dom": "8.11.3",
105105
"@testing-library/jest-dom": "5.16.2",

packages/com.sncommunity.markdown-basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"version": "1.7.4",
77
"main": "dist/dist.js",
8-
"author": "Standard Notes Community",
8+
"author": "Standard Notes Community.",
99
"description": "A Markdown editor with dynamic split-pane preview.",
1010
"scripts": {
1111
"lint": "eslint --cache --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",

packages/com.sncommunity.markdown-math/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build": "grunt",
1111
"test": "echo \"Error: no test specified\" && exit 0"
1212
},
13-
"author": "Standard Notes Community",
13+
"author": "Standard Notes Community.",
1414
"sn": {
1515
"name": "Markdown Math",
1616
"content_type": "SN|Component",

packages/com.sncommunity.markdown-visual/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"test": "echo \"Error: no test specified\" && exit 0"
3535
},
3636
"dependencies": {
37-
"@standardnotes/editor-kit": "standardnotes/editor-kit#50ffb15c935a297b082eb00ffd031adc05080d7f",
37+
"@standardnotes/editor-kit": "standardnotes/editor-kit#c0743eb4690dcf73aab97da662c3c7e5f8356275",
3838
"@standardnotes/styles": "1.6.1"
3939
},
4040
"devDependencies": {

0 commit comments

Comments
 (0)