Skip to content

Commit a98fcb6

Browse files
fix: adapt urls; add contributors (#65)
1 parent a1b0b76 commit a98fcb6

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
> Validate your webpack configs with joi
44
5-
[![travis build](https://img.shields.io/travis/jonathanewerner/webpack-validator.svg?style=flat-square)](https://travis-ci.org/jonathanewerner/webpack-validator)
6-
[![codecov.io](https://img.shields.io/codecov/c/github/jonathanewerner/webpack-validator.svg?style=flat-square)](https://codecov.io/github/jonathanewerner/webpack-validator?branch=master)
7-
![dependencies](https://img.shields.io/david/jonathanewerner/webpack-validator.svg?style=flat-square)
8-
![devDependencies](https://img.shields.io/david/dev/jonathanewerner/webpack-validator.svg?style=flat-square)
5+
[![travis build](https://img.shields.io/travis/js-dxtools/webpack-validator.svg?style=flat-square)](https://travis-ci.org/js-dxtools/webpack-validator)
6+
[![codecov.io](https://img.shields.io/codecov/c/github/js-dxtools/webpack-validator.svg?style=flat-square)](https://codecov.io/github/js-dxtools/webpack-validator?branch=master)
7+
![dependencies](https://img.shields.io/david/js-dxtools/webpack-validator.svg?style=flat-square)
8+
![devDependencies](https://img.shields.io/david/dev/js-dxtools/webpack-validator.svg?style=flat-square)
99
[![version](https://img.shields.io/npm/v/webpack-validator.svg?style=flat-square)](http://npm.im/webpack-validator)
1010
[![downloads](https://img.shields.io/npm/dm/webpack-validator.svg?style=flat-square)](http://npm-stat.com/charts.html?package=webpack-validator&from=2015-08-01)
1111
[![MIT License](https://img.shields.io/npm/l/webpack-validator.svg?style=flat-square)](http://opensource.org/licenses/MIT)
@@ -15,7 +15,7 @@
1515

1616
Writing webpack configs is brittle and error-prone. This package provides a [joi](https://github.com/hapijs/joi) object schema for webpack configs. This gets you a) static type safety, b) property spell checking and c) semantic validations such as "`loader` and `loaders` can not be used simultaneously" or "`query` can only be used with `loader`, not with `loaders`".
1717

18-
You're very welcome to give [feedback](https://github.com/jonathanewerner/webpack-validator/issues) & [PR's](https://github.com/jonathanewerner/webpack-validator).
18+
You're very welcome to give [feedback](https://github.com/js-dxtools/webpack-validator/issues) & [PR's](https://github.com/js-dxtools/webpack-validator).
1919

2020
### Example
2121
Take this simple webpack config. It has a tiny, hard to spot error. Can you find it?

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,15 @@
2323
},
2424
"repository": {
2525
"type": "git",
26-
"url": "https://github.com/jonathanewerner/webpack-validator.git"
26+
"url": "https://github.com/js-dxtools/webpack-validator.git"
2727
},
28-
"author": "Jonathan Werner <jwe@posteo.de> (http://jonathanwerner.net)",
28+
"contributors": [
29+
"Jonathan Werner <jwe@posteo.de> (http://jonathanwerner.net)",
30+
"Juho Vepsäläinen (http://survivejs.com/)",
31+
"Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
32+
"Martin Schmid",
33+
"Sarbbottam Bandyopadhyay"
34+
],
2935
"license": "MIT",
3036
"babel": {
3137
"presets": [

0 commit comments

Comments
 (0)