File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,8 @@ cp -rf ./content/plugins/ ./generated/plugins
13
13
# Fetches github.com/webpack/*-webpack-plugin repositories
14
14
./scripts/fetch_package_names.js " webpack" " -webpack-plugin" | ./scripts/fetch_package_files.js " README.md" " ./generated/plugins"
15
15
16
+ # Fetches github.com/webpack-contrib/*-loader repositories
17
+ ./scripts/fetch_package_names.js " webpack-contrib" " -loader" | ./scripts/fetch_package_files.js " README.md" " ./generated/loaders"
18
+
16
19
# Fetches github.com/webpack-contrib/*-webpack-plugin repositories
17
20
./scripts/fetch_package_names.js " webpack-contrib" " -webpack-plugin" | ./scripts/fetch_package_files.js " README.md" " ./generated/plugins"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ var highlight = Prism.highlight;
14
14
module . exports = function ( code , language ) {
15
15
language = language || 'bash' ;
16
16
17
- if ( language === 'sh' || language === 'text' ) {
17
+ if ( language === 'sh' || language === 'text' || language === 'shell' ) {
18
18
language = 'bash' ;
19
19
}
20
20
You can’t perform that action at this time.
0 commit comments