FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
simstudioai-sim/scripts/setup-doc-generator.sh at main · riverwolf67/simstudioai-sim · GitHub
riverwolf67
/
simstudioai-sim
Public
forked from
simstudioai/sim
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
simstudioai-sim
/
scripts
/
setup-doc-generator.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
49 lines (43 loc) · 1.17 KB
Breadcrumbs
simstudioai-sim
/
scripts
/
setup-doc-generator.sh
Copy path
File metadata and controls
executable file
·
49 lines (43 loc) · 1.17 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!
/bin/bash
#
Get the scripts directory path
SCRIPTS_DIR=
$(
dirname
"
$0
"
)
cd
"
$SCRIPTS_DIR
"
echo
"
Working in scripts directory:
$(
pwd
)
"
echo
"
Setting up documentation generator...
"
#
Create package.json for scripts directory
cat
>
package.json
<<
EOF
{
"name": "sim-doc-generator",
"version": "1.0.0",
"description": "Documentation generator for Sim blocks",
"type": "module",
"private": true
}
EOF
#
Install dependencies local to scripts directory
bun install --save-dev typescript @types/node @types/react ts-node tsx glob
#
Setup tsconfig.json
cat
>
tsconfig.json
<<
EOF
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"include": ["./**/*.ts"]
}
EOF
echo
"
Dependencies installed successfully!
"
echo
"
You can now run './scripts/generate-docs.sh' to generate the documentation.
"
Back
|
FazBrowse Home
|
New Git URL