Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c3ea24448 | ||
|
|
a7e9b1f9e3 | ||
|
|
08791fc13d | ||
|
|
7d0c405b8d | ||
|
|
291475afcc | ||
|
|
c53e5c50da | ||
|
|
181faba3a6 | ||
|
|
8a3cf6ce48 | ||
|
|
86ef94af34 |
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@status-im/js': patch
|
||||
---
|
||||
|
||||
get peer based on environment
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@status-im/js': patch
|
||||
---
|
||||
|
||||
use built-in crypto for pbkdf2
|
||||
@@ -0,0 +1,9 @@
|
||||
---
|
||||
'@status-im/eslint-config': minor
|
||||
'@status-im/components': minor
|
||||
'@status-im/js': minor
|
||||
'@status-im/colors': minor
|
||||
'@status-im/icons': minor
|
||||
---
|
||||
|
||||
include build step
|
||||
@@ -7,6 +7,7 @@ on:
|
||||
types: [opened, synchronize]
|
||||
|
||||
env:
|
||||
NEXT_PUBLIC_GHOST_API_URL: ''
|
||||
NEXT_PUBLIC_GHOST_API_KEY: ''
|
||||
INFURA_API_KEY: ''
|
||||
TAMAGUI_TARGET: 'web'
|
||||
|
||||
@@ -5,6 +5,14 @@ on:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
env:
|
||||
NEXT_PUBLIC_GHOST_API_URL: ''
|
||||
NEXT_PUBLIC_GHOST_API_KEY: ''
|
||||
INFURA_API_KEY: ''
|
||||
TAMAGUI_TARGET: 'web'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -12,8 +20,12 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: yarn build
|
||||
- run: yarn typecheck
|
||||
- run: yarn lint && yarn format --check
|
||||
- run: yarn test
|
||||
- uses: changesets/action@v1
|
||||
id: changesets
|
||||
with:
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.17.9",
|
||||
"@expo/metro-config": "^0.3.21",
|
||||
"@tamagui/babel-plugin": "1.11.1",
|
||||
"@tamagui/babel-plugin": "1.36.4",
|
||||
"@types/react-native": "~0.70.6",
|
||||
"babel-plugin-module-resolver": "^4.1.0",
|
||||
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
|
||||
|
||||
@@ -13,14 +13,14 @@
|
||||
"dependencies": {
|
||||
"@status-im/components": "*",
|
||||
"@status-im/icons": "*",
|
||||
"@tamagui/core": "1.11.1",
|
||||
"@tamagui/core": "1.36.4",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-native-web": "^0.18.12",
|
||||
"use-resize-observer": "^9.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tamagui/vite-plugin": "1.11.1",
|
||||
"@tamagui/vite-plugin": "1.36.4",
|
||||
"@types/react": "^18.0.33",
|
||||
"@types/react-dom": "^18.0.11",
|
||||
"@vitejs/plugin-react-swc": "^3.2.0",
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
# .env, .env.development, and .env.production files should be included in your repository as they define defaults.
|
||||
# .env*.local should be added to .gitignore, as those files are intended to be ignored.
|
||||
# .env.local is where secrets can be stored.
|
||||
#
|
||||
# – https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables#default-environment-variables
|
||||
|
||||
# The vercel env pull sub-command will export development environment variables to a local .env file or a different file of your choice.
|
||||
#
|
||||
# `vercel env pull ./apps/website/.env.development.local`
|
||||
#
|
||||
# – https://vercel.com/docs/cli/env#exporting-development-environment-variables
|
||||
|
||||
IGNORE_TS_CONFIG_PATHS=true
|
||||
TAMAGUI_TARGET=web
|
||||
TAMAGUI_DISABLE_WARN_DYNAMIC_LOAD=1
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# .env, .env.development, and .env.production files should be included in your repository as they define defaults.
|
||||
# .env*.local should be added to .gitignore, as those files are intended to be ignored.
|
||||
# .env.local is where secrets can be stored.
|
||||
#
|
||||
# – https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables#default-environment-variables
|
||||
|
||||
# The vercel env pull sub-command will export development environment variables to a local .env file or a different file of your choice.
|
||||
#
|
||||
# `vercel env pull ./apps/website/.env.development.local`
|
||||
#
|
||||
# – https://vercel.com/docs/cli/env#exporting-development-environment-variables
|
||||
|
||||
NEXT_PUBLIC_GHOST_API_URL=https://demo.ghost.io
|
||||
NEXT_PUBLIC_GHOST_API_KEY=22444f78447824223cefc48062
|
||||
@@ -16,18 +16,19 @@
|
||||
"@radix-ui/react-dialog": "^1.0.3",
|
||||
"@radix-ui/react-navigation-menu": "^1.1.2",
|
||||
"@react-spring/web": "^9.7.2",
|
||||
"react-scroll-parallax": "^3.4.2",
|
||||
"@scure/base": "^1.1.1",
|
||||
"@status-im/colors": "*",
|
||||
"@status-im/components": "*",
|
||||
"@status-im/icons": "*",
|
||||
"@status-im/js": "*",
|
||||
"@tamagui/next-theme": "1.11.1",
|
||||
"@visx/visx": "^2.18.0",
|
||||
"@tamagui/next-theme": "1.36.4",
|
||||
"@tanstack/react-query": "^4.29.7",
|
||||
"@vercel/og": "^0.5.4",
|
||||
"@tryghost/content-api": "^1.11.13",
|
||||
"@visx/visx": "^2.18.0",
|
||||
"class-variance-authority": "^0.6.0",
|
||||
"contentlayer": "^0.3.3",
|
||||
"@tanstack/react-query": "^4.29.7",
|
||||
"@tryghost/content-api": "^1.11.13",
|
||||
"d3-array": "^3.2.3",
|
||||
"d3-time-format": "^4.1.0",
|
||||
"date-fns": "^2.30.0",
|
||||
@@ -38,7 +39,7 @@
|
||||
"qrcode.react": "^3.1.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-native-web": "^0.18.12",
|
||||
"react-native-web": "^0.19.5",
|
||||
"tinykeys": "^1.4.0",
|
||||
"title": "^3.5.3",
|
||||
"github-slugger": "^2.0.0",
|
||||
@@ -48,7 +49,7 @@
|
||||
"devDependencies": {
|
||||
"@achingbrain/ssdp": "^4.0.1",
|
||||
"@tailwindcss/typography": "^0.5.9",
|
||||
"@tamagui/next-plugin": "1.11.1",
|
||||
"@tamagui/next-plugin": "1.36.4",
|
||||
"@types/d3-array": "^3.0.4",
|
||||
"@types/d3-time-format": "^4.0.0",
|
||||
"@types/highlight-words-core": "^1.2.1",
|
||||
|
||||
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 87 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 419 KiB |
|
After Width: | Height: | Size: 350 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 427 KiB |
|
After Width: | Height: | Size: 200 KiB |
|
After Width: | Height: | Size: 495 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
After Width: | Height: | Size: 280 KiB |
|
After Width: | Height: | Size: 436 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 388 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 117 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 179 KiB |
|
After Width: | Height: | Size: 413 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 229 KiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 308 KiB |
|
After Width: | Height: | Size: 362 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 245 KiB |
|
After Width: | Height: | Size: 145 KiB |
|
After Width: | Height: | Size: 170 KiB |
|
After Width: | Height: | Size: 952 KiB |
|
After Width: | Height: | Size: 883 KiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 118 KiB |
|
After Width: | Height: | Size: 530 KiB |
|
After Width: | Height: | Size: 405 KiB |
|
After Width: | Height: | Size: 314 KiB |
|
After Width: | Height: | Size: 352 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 397 KiB |
|
After Width: | Height: | Size: 536 KiB |
|
After Width: | Height: | Size: 940 KiB |
|
After Width: | Height: | Size: 274 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 371 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 378 KiB |
|
After Width: | Height: | Size: 298 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 2.3 MiB |
|
After Width: | Height: | Size: 460 KiB |
|
After Width: | Height: | Size: 264 KiB |
|
Before Width: | Height: | Size: 164 KiB |
|
Before Width: | Height: | Size: 184 KiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 197 KiB |
|
Before Width: | Height: | Size: 195 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 163 KiB After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 408 KiB |
|
After Width: | Height: | Size: 136 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 3.8 MiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 235 KiB |
|
After Width: | Height: | Size: 117 KiB |
|
After Width: | Height: | Size: 109 KiB |
|
After Width: | Height: | Size: 453 KiB |
|
After Width: | Height: | Size: 225 KiB |
|
Before Width: | Height: | Size: 15 KiB |