Skip to content

Commit 0707a2e

Browse files
authored
Removed TypeDoc (#277)
Removed all references, configs, scripts, and README's for TypeDoc throughout the library
1 parent a9ddfbc commit 0707a2e

17 files changed

Lines changed: 8 additions & 344 deletions

File tree

.github/workflows/deploydocs.yml

Lines changed: 0 additions & 62 deletions
This file was deleted.

.yarn/install-state.gz

2.54 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@ SeiJS is a monorepo that contains multiple NPM libraries for writing application
44

55
## Documentation
66

7-
Please check [our documentation](https://docs.sei.io) for notes on how to get up and running. The tutorial has examples
8-
on how to connect to a Sei wallet, query an RPC endpoint, transfer tokens, IBC transfer, and interact with contracts.
9-
10-
You can also refer to the [typedoc documentation](https://sei-protocol.github.io/sei-js/) for reference on the contents
11-
of the @sei-js/core and @sei-js/react library.
7+
Please check [our documentation](https://sei-js.docs.sei.io) for notes on how to get up and running.
128

139
## Packages
1410

TYPEDOC-README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@
77
"packages/*"
88
],
99
"scripts": {
10-
"build:all": "yarn workspaces foreach --topological-dev --all run build",
10+
"build:all": "yarn workspaces foreach --all --parallel run build",
1111
"postinstall": "yarn update-submodules",
1212
"update-submodules": "git submodule update --init --recursive",
1313
"docs": "cd docs && yarn dlx mint dev",
14-
"typedocs": "typedoc",
1514
"release": "changeset publish && git push --follow-tags",
1615
"release:internal": "yarn build:all && yarn changeset && yarn changeset version --snapshot internal && yarn changeset publish --no-git-tag --snapshot --tag internal",
17-
"test:all": "yarn workspaces foreach --all run test",
18-
"test:coverage": "yarn workspaces foreach --all run test --coverage"
16+
"test:all": "yarn workspaces foreach --all --parallel run test",
17+
"test:coverage": "yarn workspaces foreach --all --parallel run test --coverage"
1918
},
2019
"dependencies": {
2120
"@biomejs/biome": "^1.9.4",
@@ -29,8 +28,6 @@
2928
"rimraf": "^3.0.2",
3029
"ts-jest": "^29.3.0",
3130
"ts-node": "2.1.2",
32-
"typedoc": "^0.27.9",
33-
"typedoc-material-theme": "^1.3.0",
3431
"typescript": "^5.8.2"
3532
},
3633
"packageManager": "yarn@4.7.0"

packages/create-sei/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"bin": "./dist/main.js",
77
"scripts": {
88
"build": "tsc && cp -r ./templates ./dist/templates",
9-
"dev": "node --loader ts-node/esm src/main.ts",
10-
"docs": "typedoc --out docs"
9+
"dev": "node --loader ts-node/esm src/main.ts"
1110
},
1211
"dependencies": {
1312
"boxen": "^7.1.1",

packages/create-sei/tsconfig.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,5 @@
1515
"noUnusedParameters": true,
1616
"noFallthroughCasesInSwitch": true
1717
},
18-
"include": ["src"],
19-
"typedocOptions": {
20-
"readme": "./README.md",
21-
"name": "create-sei",
22-
"entryPoints": ["src/main.ts"],
23-
"exclude": ["node_modules"]
24-
}
18+
"include": ["src"]
2519
}

packages/ledger/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
1515
"build:esm": "tsc --outDir dist/esm --module esnext",
1616
"build:types": "tsc --project ./tsconfig.declaration.json",
17-
"docs": "typedoc --out docs",
1817
"test": "jest"
1918
},
2019
"homepage": "https://github.com/sei-protocol/sei-js#readme",

packages/ledger/tsconfig.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,5 @@
44
"compilerOptions": {
55
"outDir": "./dist/types",
66
"rootDir": "./"
7-
},
8-
"typedocOptions": {
9-
"readme": "./README.md",
10-
"name": "ledger",
11-
"entryPoints": ["src/index.ts"]
127
}
138
}

packages/mcp-server/tsconfig.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,5 @@
44
"compilerOptions": {
55
"outDir": "./dist/types",
66
"moduleResolution": "bundler"
7-
},
8-
"typedocOptions": {
9-
"readme": "./README.md",
10-
"name": "mcp-server",
11-
"entryPoints": ["src/index.ts"],
12-
"exclude": ["node_modules"]
137
}
148
}

0 commit comments

Comments
 (0)