@tpluscode/eslint-config 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 3edea08: allow dev deps in \*.test.js
8
+
3
9
  ## 0.4.3
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -10,10 +10,10 @@ Newer NPM installs peer dependencies automatically
10
10
  npm i --save-dev @tpluscode/eslint-config
11
11
  ```
12
12
 
13
- With yarn v1 install with:
13
+ For yarn v1 use `install-peerdeps` (`--extra-args` needed for monorepos):
14
14
 
15
15
  ```
16
- npx install-peerdeps -Yd @tpluscode/eslint-config
16
+ npx install-peerdeps -Yd @tpluscode/eslint-config (--extra-args "-W")
17
17
  ```
18
18
 
19
19
  If you write code in TypeScript, add:
package/js.js CHANGED
@@ -32,6 +32,8 @@ module.exports = {
32
32
  '**/test/**/*.ts',
33
33
  '*.test.ts',
34
34
  '*.spec.ts',
35
+ '*.test.js',
36
+ '*.spec.js',
35
37
  '**/test/**/*.js',
36
38
  '*.test.js',
37
39
  '*.spec.js',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpluscode/eslint-config",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {