Skip to content

Commit 54fa2b0

Browse files
committed
Adding descriptions for all projects (based on github's repo description fields)
1 parent 221b7de commit 54fa2b0

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

components/organization/organization.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default props => {
2525
<h4>{ org.repo }</h4>
2626
</a>
2727

28-
<p>Short description...</p>
28+
<p>{ org.description }</p>
2929

3030
<h6>Downloads and Stars</h6>
3131
<Shield content={ `npm/dm/${org.npm}`} label="npm" />

components/organization/projects.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,241 +3,289 @@
33
{
44
"repo": "webpack/memory-fs",
55
"npm": "memory-fs",
6+
"description": "A simple in-memory filesystem that holds data in a javascript object.",
67
"maintainer": "sokra"
78
},
89
{
910
"repo": "webpack/webpack",
1011
"npm": "webpack",
12+
"description": "A bundler for javascript and friends.",
1113
"maintainer": "sokra"
1214
},
1315
{
1416
"repo": "webpack/loader-utils",
1517
"npm": "loader-utils",
18+
"description": "Webpack loader utilities.",
1619
"maintainer": "sokra"
1720
},
1821
{
1922
"repo": "webpack/source-list-map",
2023
"npm": "source-list-map",
24+
"description": "Fast line to line SourceMap generator.",
2125
"maintainer": "sokra"
2226
},
2327
{
2428
"repo": "webpack/enhanced-resolve",
2529
"npm": "enhanced-resolve",
30+
"description": "Offers an async require.resolve function that's highly configurable.",
2631
"maintainer": "sokra"
2732
},
2833
{
2934
"repo": "webpack/tapable",
3035
"npm": "tapable",
36+
"description": "Just a little module for plugins.",
3137
"maintainer": "sokra"
3238
},
3339
{
3440
"repo": "webpack/watchpack",
3541
"npm": "watchpack",
42+
"description": "Wrapper library for directory and file watching.",
3643
"maintainer": "sokra"
3744
},
3845
{
3946
"repo": "webpack/node-libs-browser",
4047
"npm": "node-libs-browser",
48+
"description": "The node core libs for in browser usage.",
4149
"maintainer": ""
4250
},
4351
{
4452
"repo": "webpack/webpack-dev-server",
4553
"npm": "webpack-dev-server",
54+
"description": "Serves a webpack application, updating the browser on file changes.",
4655
"maintainer": "Spacek33z"
4756
},
4857
{
4958
"repo": "webpack/file-loader",
5059
"npm": "file-loader",
60+
"description": "A simple loader for copying and renaming files.",
5161
"maintainer": "sokra"
5262
},
5363
{
5464
"repo": "webpack/style-loader",
5565
"npm": "style-loader",
66+
"description": "Load and inject stylesheets into the DOM.",
5667
"maintainer": "sokra"
5768
},
5869
{
5970
"repo": "webpack/css-loader",
6071
"npm": "css-loader",
72+
"description": "Load CSS modules and resolve any dependencies.",
6173
"maintainer": "sokra"
6274
},
6375
{
6476
"repo": "webpack/webpack-dev-middleware",
6577
"npm": "webpack-dev-middleware",
78+
"description": "Offers a dev middleware for webpack, which arguments a live bundle to a directory.",
6679
"maintainer": "Spacek33z"
6780
},
6881
{
6982
"repo": "webpack/fastparse",
7083
"npm": "fastparse",
84+
"description": "A simple parser, based on a statemachine and regular expressions.",
7185
"maintainer": "sokra"
7286
},
7387
{
7488
"repo": "webpack/json-loader",
7589
"npm": "json-loader",
90+
"description": "Load JSON into a pre-parsed variable.",
7691
"maintainer": ""
7792
},
7893
{
7994
"repo": "webpack/url-loader",
8095
"npm": "url-loader",
96+
"description": "Load files into data urls based on byte limit.",
8197
"maintainer": ""
8298
},
8399
{
84100
"repo": "webpack/webpack-sources",
85101
"npm": "webpack-sources",
102+
"description": "Source code handling classes for webpack.",
86103
"maintainer": ""
87104
},
88105
{
89106
"repo": "webpack/extract-text-webpack-plugin",
90107
"npm": "extract-text-webpack-plugin",
108+
"description": "Extract text from a bundle into a file.",
91109
"maintainer": ""
92110
},
93111
{
94112
"repo": "jtangelder/sass-loader",
95113
"npm": "sass-loader",
114+
"description": "Load and parse SASS modules into CSS.",
96115
"maintainer": "jhnns"
97116
},
98117
{
99118
"repo": "webpack/karma-webpack",
100119
"npm": "karma-webpack",
120+
"description": "Use webpack to pre-process files in karma.",
101121
"maintainer": "MikaAK"
102122
},
103123
{
104124
"repo": "webpack/imports-loader",
105125
"npm": "imports-loader",
126+
"description": "Detect and import libraries based on the use of certain variables.",
106127
"maintainer": ""
107128
},
108129
{
109130
"repo": "webpack/raw-loader",
110131
"npm": "raw-loader",
132+
"description": "Load a module's contents as a string.",
111133
"maintainer": ""
112134
},
113135
{
114136
"repo": "webpack/exports-loader",
115137
"npm": "exports-loader",
138+
"description": "Load a module's contents directly into export statements.",
116139
"maintainer": ""
117140
},
118141
{
119142
"repo": "webpack/less-loader",
120143
"npm": "less-loader",
144+
"description": "Load and parse LESS modules into CSS.",
121145
"maintainer": ""
122146
},
123147
{
124148
"repo": "webpack/expose-loader",
125149
"npm": "expose-loader",
150+
"description": "Expose modules as global variables.",
126151
"maintainer": ""
127152
},
128153
{
129154
"repo": "webpack/html-loader",
130155
"npm": "html-loader",
156+
"description": "Load HTML modules/templates as strings.",
131157
"maintainer": "hemanth"
132158
},
133159
{
134160
"repo": "webpack/loader-runner",
135161
"npm": "loader-runner",
162+
"description": "Run webpack loaders.",
136163
"maintainer": ""
137164
},
138165
{
139166
"repo": "webpack/script-loader",
140167
"npm": "script-loader",
168+
"description": "Load and execute scripts once in the global context.",
141169
"maintainer": ""
142170
},
143171
{
144172
"repo": "shama/webpack-stream",
145173
"npm": "webpack-stream",
174+
"description": "Run webpack through a stream interface.",
146175
"maintainer": "shama"
147176
},
148177
{
149178
"repo": "webpack/source-map-loader",
150179
"npm": "source-map-loader",
180+
"description": "Extract sourceMappingURL comments from modules to pass to webpack.",
151181
"maintainer": ""
152182
},
153183
{
154184
"repo": "webpack/null-loader",
155185
"npm": "null-loader",
186+
"description": "Load an empty module.",
156187
"maintainer": ""
157188
},
158189
{
159190
"repo": "webpack/compression-webpack-plugin",
160191
"npm": "compression-webpack-plugin",
192+
"description": "Prepare compressed versions of assets to serve them with Content-Encoding.",
161193
"maintainer": "palmerj3"
162194
},
163195
{
164196
"repo": "webpack/transform-loader",
165197
"npm": "transform-loader",
198+
"description": "Load modules with browserify transforms.",
166199
"maintainer": "minwe"
167200
},
168201
{
169202
"repo": "webpack/grunt-webpack",
170203
"npm": "grunt-webpack",
204+
"description": "Integrate webpack into a grunt build process.",
171205
"maintainer": "danez"
172206
},
173207
{
174208
"repo": "webpack/jshint-loader",
175209
"npm": "jshint-loader",
210+
"description": "Load and lint modules with JSHint.",
176211
"maintainer": "kostasmanionis"
177212
},
178213
{
179214
"repo": "webpack/bundle-loader",
180215
"npm": "bundle-loader",
216+
"description": "Load a module and it's children into a separate bundle.",
181217
"maintainer": ""
182218
},
183219
{
184220
"repo": "webpack/coffee-loader",
185221
"npm": "coffee-loader",
222+
"description": "Load and parse coffee script modules into JS.",
186223
"maintainer": ""
187224
},
188225
{
189226
"repo": "webpack/worker-loader",
190227
"npm": "worker-loader",
228+
"description": "Load modules as workers.",
191229
"maintainer": ""
192230
},
193231
{
194232
"repo": "webpack/mocha-loader",
195233
"npm": "mocha-loader",
234+
"description": "Load mocha modules for testing.",
196235
"maintainer": "tricoder42"
197236
},
198237
{
199238
"repo": "webpack/react-proxy-loader",
200239
"npm": "react-proxy-loader",
240+
"description": "Wrap a react component in a proxy component to enable Code Splitting.",
201241
"maintainer": ""
202242
},
203243
{
204244
"repo": "webpack/multi-loader",
205245
"npm": "multi-loader",
246+
"description": "Load and split a module into multiple modules loaded with different loaders.",
206247
"maintainer": ""
207248
},
208249
{
209250
"repo": "webpack/val-loader",
210251
"npm": "val-loader",
252+
"description": "Load and execute a module while compiling, returning the result.",
211253
"maintainer": ""
212254
},
213255
{
214256
"repo": "webpack/i18n-webpack-plugin",
215257
"npm": "i18n-webpack-plugin",
258+
"description": "Embed localization into your bundle.",
216259
"maintainer": "EcutDavid"
217260
},
218261
{
219262
"repo": "webpack/json5-loader",
220263
"npm": "json5-loader",
264+
"description": "Load JSON5 into a pre-parsed variable.",
221265
"maintainer": "gdi2290"
222266
},
223267
{
224268
"repo": "webpack/node-loader",
225269
"npm": "node-loader",
270+
"description": "Load native node modules.",
226271
"maintainer": ""
227272
},
228273
{
229274
"repo": "webpack/coverjs-loader",
230275
"npm": "coverjs-loader",
276+
"description": "Test modules' code coverage using CoverJS.",
231277
"maintainer": ""
232278
},
233279
{
234280
"repo": "webpack/coffee-redux-loader",
235281
"npm": "coffee-redux-loader",
282+
"description": "Load coffee script modules.",
236283
"maintainer": ""
237284
},
238285
{
239286
"repo": "thelarkinn/angular2-template-loader",
240287
"npm": "angular2-template-loader",
288+
"description": "Chain-to loader for webpack that inlines all html and style's in angular2 components.",
241289
"maintainer": "thelarkinn"
242290
}
243291
]

0 commit comments

Comments
 (0)