Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit fc8b4e4

Browse files
ricardogobbosouzaevilebottnawi
authored andcommitted
chore(release): 3.0.0
1 parent dcbac5f commit fc8b4e4

Some content is hidden

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

80 files changed

+19959
-4040
lines changed

.editorconfig

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# editorconfig.org
2-
root = true
32

43
[*]
5-
end_of_line = lf
64
charset = utf-8
7-
trim_trailing_whitespace = true
8-
insert_final_newline = true
95
indent_style = space
106
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
1110

1211
[*.md]
12+
insert_final_newline = true
1313
trim_trailing_whitespace = false
14-
15-
[Makefile]
16-
indent_style = tab

.eslintignore

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
node_modules
2-
3-
test/fixtures/
4-
test/output/
1+
/coverage
2+
/dist
3+
/node_modules
4+
/test/fixtures
5+
/test/output/

.eslintrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['@webpack-contrib/eslint-config-webpack', 'prettier'],
4+
rules: {
5+
'global-require': 'off',
6+
'import/no-dynamic-require': 'off',
7+
},
8+
};

.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto
2+
bin/* eol=lf
3+
package-lock.json -diff
4+
yarn.lock -diff

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
@webpack-contrib/org-maintainers
44

55
# Add repository specific users / groups
6-
# below here for libs that are not maintained by the org.
6+
# below here for libs that are not maintained by the org.

.github/CONTRIBUTING.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ BREAKING CHANGE: Updates to `Chunk.mapModules`.
128128
129129
This release is not backwards compatible with `Webpack 2.x` due to breaking changes in webpack/webpack#4764
130130
Migration: see webpack/webpack#5225
131+
131132
```
132133

133134
## Testing Your Pull Request
@@ -146,14 +147,6 @@ module. Thankfully, Github provides a means to do this. Add a dependency to the
146147

147148
Where `{id}` is the # ID of your Pull Request.
148149

149-
## Contributor License Agreement
150-
151-
When submitting your contribution, a CLA (Contributor License Agreement) bot will come by to verify that you signed the [CLA](https://cla.js.foundation/webpack-contrib/eslint-loader).
152-
If it is your first time, it will link you to the right place to sign it.
153-
However, if you have committed your contributions using an email that is not the same as your email used on GitHub, the CLA bot can't accept your contribution.
154-
155-
Run `git config user.email` to see your Git email, and verify it with [your GitHub email](https://github.com/settings/emails).
156-
157150
## Thanks
158151

159152
For your interest, time, understanding, and for following this simple guide.

.gitignore

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1-
node_modules
1+
logs
2+
*.log
3+
npm-debug.log*
4+
yarn-debug.log*
5+
.eslintcache
26

3-
test/output/
7+
/coverage
8+
/dist
9+
/local
10+
/reports
11+
/node_modules
12+
/test/output/
13+
14+
.DS_Store
15+
Thumbs.db
16+
.idea
17+
.vscode
18+
*.sublime-project
19+
*.sublime-workspace
20+
*.iml

.prettierignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/coverage
2+
/dist
3+
/node_modules
4+
/test/fixtures
5+
/test/output/
6+
CHANGELOG.md

.prettierrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
singleQuote: true,
3+
trailingComma: 'es5',
4+
arrowParens: 'always',
5+
};

.travis.yml

-27
This file was deleted.

0 commit comments

Comments
 (0)