-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade webpack/antwar/deps (#980)
The main purpose of this PR is just to bring our dependencies, especially webpack and antwar up to date. In the process of doing this, we also resolved a variety of bugs and other issues. There is still much work to be done but this is definitely a step in the right direction and should make further changes easier. Here are some other notable changes: * refactor(components): clean up formatting and usage * fix(components): fix `PropTypes` warnings * refactor(config): remove unused vote routes * refactor(config): utilize `disable` option in the extract plugin to simplify config * fix(build-process): fix missing `<title>` tags * fix(components): simplify index page management in sidebar (#1085) * docs: minor improvements to index pages * fix(tests): ignore npm-install-weback-plugin Ignore the "sucks" mention in the npm-install-webpack-plugin file for now. It isn't used in a derogatory way so I'm not sure we should change it but I'm also not sure we should `allow` "sucks" globally.
- Loading branch information
Showing
35 changed files
with
2,954 additions
and
2,297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
generated/plugins/npm-install-webpack-plugin.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
# Top-most EditorConfig file | ||
root = true | ||
|
||
# Set default charset | ||
[*.{js}] | ||
charset = utf-8 | ||
|
||
# AutoFormat All Files | ||
[*] | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
# 4 space indentation | ||
[*.{md,js,jsx,scss,hbs}] | ||
# Format All Source Files | ||
[*.{md,js,jsx,json,scss,hbs,*rc}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Format Config | ||
[{package.json,.alexrc,babelrc,.eslintignore,.eslintrc,.markdownlint.json,.proselintrc}] | ||
# Format Any Missing Config Files | ||
[.eslintignore] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
plugins: [ | ||
require('autoprefixer') | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.