Skip to content

Commit ecb865b

Browse files
committed
Updated docs/structure, merged similar projects, improved readme, removed duplicates/unrequireds
1 parent d3bb72a commit ecb865b

File tree

459 files changed

+202
-64295
lines changed

Some content is hidden

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

459 files changed

+202
-64295
lines changed

.gitattributes

-2
This file was deleted.

.gitignore

+195
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
# Logs
2+
logs
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
lerna-debug.log*
7+
.pnpm-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
*.lcov
18+
19+
# Bower dependency directory (https://bower.io/)
20+
bower_components
21+
22+
# node-waf configuration
23+
.lock-wscript
24+
25+
# Compiled binary addons (https://nodejs.org/api/addons.html)
26+
build/Release
27+
28+
# Dependency directories
29+
node_modules/
30+
jspm_packages/
31+
32+
# Snowpack dependency directory (https://snowpack.dev/)
33+
web_modules/
34+
35+
# TypeScript cache
36+
*.tsbuildinfo
37+
38+
# Optional npm cache directory
39+
.npm
40+
41+
# Optional eslint cache
42+
.eslintcache
43+
44+
# Optional stylelint cache
45+
.stylelintcache
46+
47+
# Microbundle cache
48+
.rpt2_cache/
49+
.rts2_cache_cjs/
50+
.rts2_cache_es/
51+
.rts2_cache_umd/
52+
53+
# Optional REPL history
54+
.node_repl_history
55+
56+
# Output of 'npm pack'
57+
*.tgz
58+
59+
# Yarn Integrity file
60+
.yarn-integrity
61+
62+
# dotenv environment variable files
63+
.env
64+
.env.development.local
65+
.env.test.local
66+
.env.production.local
67+
.env.local
68+
69+
# parcel-bundler cache (https://parceljs.org/)
70+
.cache
71+
.parcel-cache
72+
73+
# Next.js build output
74+
.next
75+
out
76+
77+
# Nuxt.js build / generate output
78+
.nuxt
79+
dist
80+
81+
# Gatsby files
82+
.cache/
83+
# Comment in the public line in if your project uses Gatsby and not Next.js
84+
# https://nextjs.org/blog/next-9-1#public-directory-support
85+
# public
86+
87+
# vuepress build output
88+
.vuepress/dist
89+
90+
# vuepress v2.x temp and cache directory
91+
.temp
92+
.cache
93+
94+
# Docusaurus cache and generated files
95+
.docusaurus
96+
97+
# Serverless directories
98+
.serverless/
99+
100+
# FuseBox cache
101+
.fusebox/
102+
103+
# DynamoDB Local files
104+
.dynamodb/
105+
106+
# TernJS port file
107+
.tern-port
108+
109+
# Stores VSCode versions used for testing VSCode extensions
110+
.vscode-test
111+
112+
# yarn v2
113+
.yarn/cache
114+
.yarn/unplugged
115+
.yarn/build-state.yml
116+
.yarn/install-state.gz
117+
.pnp.*
118+
119+
.DS_STORE
120+
node_modules
121+
scripts/flow/*/.flowconfig
122+
.flowconfig
123+
*~
124+
*.pyc
125+
.grunt
126+
_SpecRunner.html
127+
__benchmarks__
128+
build/
129+
remote-repo/
130+
coverage/
131+
.module-cache
132+
fixtures/dom/public/react-dom.js
133+
fixtures/dom/public/react.js
134+
test/the-files-to-test.generated.js
135+
*.log*
136+
chrome-user-data
137+
*.sublime-project
138+
*.sublime-workspace
139+
*.iml
140+
.vscode
141+
*.swp
142+
*.swo
143+
144+
packages/react-devtools-core/dist
145+
packages/react-devtools-extensions/chrome/build
146+
packages/react-devtools-extensions/chrome/*.crx
147+
packages/react-devtools-extensions/chrome/*.pem
148+
packages/react-devtools-extensions/firefox/build
149+
packages/react-devtools-extensions/firefox/*.xpi
150+
packages/react-devtools-extensions/firefox/*.pem
151+
packages/react-devtools-extensions/shared/build
152+
packages/react-devtools-extensions/.tempUserDataDir
153+
packages/react-devtools-inline/dist
154+
packages/react-devtools-shell/dist
155+
packages/react-devtools-timeline/dist
156+
157+
# compiled output
158+
/dist
159+
/tmp
160+
/out-tsc
161+
162+
# Runtime data
163+
pids
164+
*.pid
165+
*.seed
166+
*.pid.lock
167+
168+
# nyc test coverage
169+
.nyc_output
170+
171+
# IDEs and editors
172+
.idea
173+
.project
174+
.classpath
175+
.c9/
176+
*.launch
177+
.settings/
178+
179+
# IDE - VSCode
180+
.vscode/*
181+
!.vscode/settings.json
182+
!.vscode/tasks.json
183+
!.vscode/launch.json
184+
!.vscode/extensions.json
185+
186+
# misc
187+
.sass-cache
188+
connect.lock
189+
typings
190+
191+
# Yarn Integrity file
192+
.yarn-integrity
193+
194+
# System Files
195+
Thumbs.db

.gitmodules

-9
This file was deleted.

.vs/ProjectSettings.json

-3
This file was deleted.

.vs/VSWorkspaceState.json

-17
This file was deleted.

.vs/javascript-mini-projects/v16/.suo

-23 KB
Binary file not shown.

.vs/slnx.sqlite

-412 KB
Binary file not shown.

.vscode/settings.json

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

AtomicSymbolGenerator/Readme.md

-15
This file was deleted.

AtomicSymbolGenerator/index.html

-54
This file was deleted.

0 commit comments

Comments
 (0)