Skip to content

Commit 60b5edd

Browse files
committed
refactor!: remove apps
1 parent 6cd24bb commit 60b5edd

Some content is hidden

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

62 files changed

+5305
-19948
lines changed

.commitlintrc.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ const fs = require("node:fs")
22
const path = require("node:path")
33

44
const packages = fs.readdirSync(path.resolve(__dirname, "packages"))
5-
const apps = fs.readdirSync(path.resolve(__dirname, "apps"))
65

76
module.exports = {
87
extends: ["@commitlint/config-conventional"],
98
prompt: {
10-
scopes: [...packages, ...apps],
9+
scopes: [...packages],
1110
markBreakingChangeMode: true,
1211
allowCustomIssuePrefix: false,
1312
allowEmptyIssuePrefix: false,

.eslintignore

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ dist
2323
build
2424
/docs
2525

26-
# Docusaurus cache and generated files
27-
.docusaurus
28-
.cache-loader
29-
3026
# misc
3127
.DS_Store
3228
*.pem

.github/workflows/main.yml

-8
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737
files_yaml: |
3838
contracts:
3939
- packages/contracts/**/*.{js,json,ts,sol}
40-
docs:
41-
- apps/docs/**/*
4240
packages:
4341
- packages/**/*.{js,json,ts}
4442
- '!packages/{contracts}/**/*'
@@ -53,12 +51,6 @@ jobs:
5351
yarn compile:contracts
5452
yarn workspace excubiae-contracts lint
5553
56-
- if: steps.changed-files.outputs.docs_any_changed == 'true'
57-
name: Build and format docs
58-
run: |
59-
yarn workspace excubiae-docs build
60-
yarn workspace excubiae-docs format
61-
6254
- if: steps.changed-files.outputs.packages_any_changed == 'true'
6355
name: Build packages
6456
run: yarn build:packages

.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ build
6565
dist
6666
/docs
6767

68-
# Docusaurus cache and generated files
69-
.docusaurus
70-
.cache-loader
71-
7268
# Hardhat
7369
artifacts
7470
cache

.prettierignore

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ build
2626
# github
2727
.github/ISSUE_TEMPLATE
2828

29-
# Docusaurus cache and generated files
30-
.docusaurus
31-
.cache-loader
32-
3329
# mdx file
3430
*.mdx
3531

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ yarn test
5959

6060
### Build
6161

62-
Build all packages & apps:
62+
Build all packages:
6363

6464
```bash
6565
yarn build

apps/docs/.gitignore

-20
This file was deleted.

apps/docs/README.md

-41
This file was deleted.

apps/docs/babel.config.js

-3
This file was deleted.

apps/docs/blog/2019-05-28-first-blog-post.md

-12
This file was deleted.

apps/docs/blog/2019-05-29-long-blog-post.md

-44
This file was deleted.

apps/docs/blog/2021-08-01-mdx-blog-post.mdx

-24
This file was deleted.
Binary file not shown.

apps/docs/blog/2021-08-26-welcome/index.md

-29
This file was deleted.

apps/docs/blog/authors.yml

-23
This file was deleted.

apps/docs/blog/tags.yml

-19
This file was deleted.

apps/docs/docs/intro.md

-47
This file was deleted.

apps/docs/docs/tutorial-basics/_category_.json

-8
This file was deleted.

apps/docs/docs/tutorial-basics/congratulations.md

-23
This file was deleted.

0 commit comments

Comments
 (0)