Skip to content

Commit 9fd2ef9

Browse files
Merge pull request #423 from monkvision/fix/sights-data
Fix : get sights data from sights package directly instead of node package
2 parents f4fa167 + 6a78db7 commit 9fd2ef9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/website-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
- uses: actions/checkout@v1
1515
- uses: actions/setup-node@v1
1616
with:
17-
node-version: '14.x'
17+
node-version: "14.x"
18+
- name: Build Sights
19+
run: |
20+
yarn
1821
- name: Test Build
1922
run: |
2023
cd website
@@ -33,7 +36,7 @@ jobs:
3336
- uses: actions/checkout@v1
3437
- uses: actions/setup-node@v1
3538
with:
36-
node-version: '14.x'
39+
node-version: "14.x"
3740
- uses: webfactory/[email protected]
3841
with:
3942
ssh-private-key: ${{ secrets.FUTURA_SECRET }}

website/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@
2323
"@emotion/react": "^11.7.1",
2424
"@emotion/styled": "^11.6.0",
2525
"@mui/material": "^5.2.8",
26-
"@monkvision/sights": "^3.1.2",
2726
"mdx-mermaid": "^1.1.0",
2827
"mermaid": "^8.13.2",
2928
"react": "^17.0.2",
3029
"react-copy-to-clipboard": "^5.0.4",
3130
"react-dom": "^17.0.2",
3231
"react-json-view": "^1.21.3"
32+
},
33+
"peerDependencies": {
34+
"@monkvision/sights": "*"
3335
}
3436
}

website/yarn.lock

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,11 +1703,6 @@
17031703
resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
17041704
integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
17051705

1706-
"@monkvision/sights@^3.1.2":
1707-
version "3.1.2"
1708-
resolved "https://registry.yarnpkg.com/@monkvision/sights/-/sights-3.1.2.tgz#316abdbdb9f029bf39d3941fc17b6a91d07ec3f4"
1709-
integrity sha512-UdgWRRdSEe6XRdPEvIiU5KOEBtex8RwKj3Uh0B+tftHiQV6UUUrav5Tnckykq75nJALxbcJSNf+OSYcoFVrh/Q==
1710-
17111706
17121707
version "5.0.0-alpha.67"
17131708
resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.67.tgz#da2423b96204f71cf37bcfcf3054667f38361eb8"

0 commit comments

Comments
 (0)