forked from nuanyang233/mask.social
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: migrate bg worker * fix: global type * chore: migrate main, plugin-host, setup * chore: code style * chore: adjust register plugin * chore: code style * fix: type * fix: ci * fix: cspell * chore: register * chore: ci checkout submodules * fix: ci * fix: type * fix: type * fix: es type * refactor: configs * fix: nextjs build * chore: install webpack * fix: build errors * chore: upgrade @standard-crypto/farcaster-js * chore: clean up postinstall * chore: next.config.js # * chore: tailwind.config.js * fix: tailwind * fix: prettier * refactor: cspell * chore: lock file * fix: prettier * fix: polyfills * fix: cspell * fix: eslint * fix: prettier * fix: build errors - remove next-auth - esm * chore: mui * fix: type errors * fix: cspell * chore: cleanup * fix: pkg lost * chore: build on vercel * chore: install pnpm * chore: prettier * fix: gitignore * fix: vercel build * fix: pkg path * chore: update script * fix: prettier
- Loading branch information
1 parent
6ec4c0f
commit 9bad25c
Showing
120 changed files
with
5,199 additions
and
1,195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
next.config.js | ||
postcss.config.js | ||
tailwind.config.js | ||
postcss.config.cjs | ||
tailwind.config.cjs | ||
|
||
src/maskbook | ||
public/js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
name: CSpell Check | ||
|
||
on: | ||
push: | ||
push: | ||
|
||
jobs: | ||
spellcheck: | ||
runs-on: ubuntu-latest | ||
spellcheck: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'true' | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.9.0' | ||
- name: Authenticate NPM | ||
uses: DimensionDev/github-token-action@latest | ||
with: | ||
registry: true | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.9.0' | ||
|
||
- name: Run CSpell | ||
run: npx cspell "**/*" | ||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Run CSpell | ||
run: npx cspell "**/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
name: ESLint Check | ||
|
||
on: | ||
push: | ||
push: | ||
|
||
jobs: | ||
eslint: | ||
runs-on: ubuntu-latest | ||
eslint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'true' | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.9.0' | ||
- name: Authenticate NPM | ||
uses: DimensionDev/github-token-action@latest | ||
with: | ||
registry: true | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.9.0' | ||
|
||
- name: Run ESLint | ||
run: npx eslint . --ext .js,.jsx,.ts,.tsx | ||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Run ESLint | ||
run: npx eslint . --ext .js,.jsx,.ts,.tsx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@dimensiondev:registry=https://npm.pkg.github.com/ | ||
resolution-mode=time-based | ||
ignore-scripts=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/// <reference types="./src/maskbook/packages/encryption/src/internal.d.ts" /> | ||
/// <reference types="./src/maskbook/packages/polyfills/types/__all.d.ts" /> | ||
/// <reference types="./src/maskbook/packages/polyfills/types/dom.d.ts" /> | ||
/// <reference types="./src/maskbook/packages/polyfills/types/firefox.d.ts" /> | ||
/// <reference types="./src/maskbook/packages/web3-telemetry/src/env.d.ts" /> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.