Skip to content

Commit ae2fe4c

Browse files
committed
move js to index
1 parent 5d76a95 commit ae2fe4c

File tree

8 files changed

+177
-191
lines changed

8 files changed

+177
-191
lines changed

.gitignore

Lines changed: 177 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,180 @@ melange.rsa
33
melange.rsa.pub
44
dlbot.tar
55
packages/
6-
.token
6+
.token
7+
8+
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
9+
10+
# Logs
11+
12+
logs
13+
_.log
14+
npm-debug.log_
15+
yarn-debug.log*
16+
yarn-error.log*
17+
lerna-debug.log*
18+
.pnpm-debug.log*
19+
20+
# Caches
21+
22+
.cache
23+
24+
# Diagnostic reports (https://nodejs.org/api/report.html)
25+
26+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
27+
28+
# Runtime data
29+
30+
pids
31+
_.pid
32+
_.seed
33+
*.pid.lock
34+
35+
# Directory for instrumented libs generated by jscoverage/JSCover
36+
37+
lib-cov
38+
39+
# Coverage directory used by tools like istanbul
40+
41+
coverage
42+
*.lcov
43+
44+
# nyc test coverage
45+
46+
.nyc_output
47+
48+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
49+
50+
.grunt
51+
52+
# Bower dependency directory (https://bower.io/)
53+
54+
bower_components
55+
56+
# node-waf configuration
57+
58+
.lock-wscript
59+
60+
# Compiled binary addons (https://nodejs.org/api/addons.html)
61+
62+
build/Release
63+
64+
# Dependency directories
65+
66+
node_modules/
67+
jspm_packages/
68+
69+
# Snowpack dependency directory (https://snowpack.dev/)
70+
71+
web_modules/
72+
73+
# TypeScript cache
74+
75+
*.tsbuildinfo
76+
77+
# Optional npm cache directory
78+
79+
.npm
80+
81+
# Optional eslint cache
82+
83+
.eslintcache
84+
85+
# Optional stylelint cache
86+
87+
.stylelintcache
88+
89+
# Microbundle cache
90+
91+
.rpt2_cache/
92+
.rts2_cache_cjs/
93+
.rts2_cache_es/
94+
.rts2_cache_umd/
95+
96+
# Optional REPL history
97+
98+
.node_repl_history
99+
100+
# Output of 'npm pack'
101+
102+
*.tgz
103+
104+
# Yarn Integrity file
105+
106+
.yarn-integrity
107+
108+
# dotenv environment variable files
109+
110+
.env
111+
.env.development.local
112+
.env.test.local
113+
.env.production.local
114+
.env.local
115+
116+
# parcel-bundler cache (https://parceljs.org/)
117+
118+
.parcel-cache
119+
120+
# Next.js build output
121+
122+
.next
123+
out
124+
125+
# Nuxt.js build / generate output
126+
127+
.nuxt
128+
dist
129+
130+
# Gatsby files
131+
132+
# Comment in the public line in if your project uses Gatsby and not Next.js
133+
134+
# https://nextjs.org/blog/next-9-1#public-directory-support
135+
136+
# public
137+
138+
# vuepress build output
139+
140+
.vuepress/dist
141+
142+
# vuepress v2.x temp and cache directory
143+
144+
.temp
145+
146+
# Docusaurus cache and generated files
147+
148+
.docusaurus
149+
150+
# Serverless directories
151+
152+
.serverless/
153+
154+
# FuseBox cache
155+
156+
.fusebox/
157+
158+
# DynamoDB Local files
159+
160+
.dynamodb/
161+
162+
# TernJS port file
163+
164+
.tern-port
165+
166+
# Stores VSCode versions used for testing VSCode extensions
167+
168+
.vscode-test
169+
170+
# yarn v2
171+
172+
.yarn/cache
173+
.yarn/unplugged
174+
.yarn/build-state.yml
175+
.yarn/install-state.gz
176+
.pnp.*
177+
178+
# IntelliJ based IDEs
179+
.idea
180+
181+
# Finder (MacOS) folder config
182+
.DS_Store
File renamed without changes.
File renamed without changes.
File renamed without changes.

js/.gitignore

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

js/README.md

Lines changed: 0 additions & 15 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)