@w5s/eslint-config 1.0.0-alpha.31 → 1.0.0-alpha.33

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.
Files changed (2) hide show
  1. package/json.js +4 -0
  2. package/package.json +9 -9
package/json.js CHANGED
@@ -140,6 +140,10 @@ module.exports = {
140
140
  order: ['type', 'name', 'email', 'url'],
141
141
  pathPattern: `^${key}$`,
142
142
  })),
143
+ ...['scripts', 'betterScripts'].map((key) => ({
144
+ order: { type: 'asc' },
145
+ pathPattern: `^${key}$`,
146
+ })),
143
147
  ...[
144
148
  'bin',
145
149
  'contributes',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/eslint-config",
3
- "version": "1.0.0-alpha.31",
3
+ "version": "1.0.0-alpha.33",
4
4
  "description": "ESLint configuration presets",
5
5
  "keywords": [
6
6
  "eslint",
@@ -25,8 +25,7 @@
25
25
  "rules/*.js"
26
26
  ],
27
27
  "scripts": {
28
- "build": "concurrently \"npm:build:*\" ",
29
- "build:empty": ":",
28
+ "build": "concurrently \"npm:build:*\" \":\"",
30
29
  "clean": "concurrently \"npm:clean:*\" \":\"",
31
30
  "docs": "md-magic --path '**/*.md' --ignore='node_modules'",
32
31
  "format": "concurrently \"npm:format:*\" \":\"",
@@ -35,7 +34,8 @@
35
34
  "lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
36
35
  "prepare": "concurrently \"npm:prepare:*\" \":\"",
37
36
  "spellcheck": "cspell --no-progress '**'",
38
- "test": "scripts/test"
37
+ "test": "concurrently \"npm:test:*\" ",
38
+ "test:src": "scripts/test"
39
39
  },
40
40
  "eslintConfig": {
41
41
  "rules": {
@@ -68,13 +68,13 @@
68
68
  "parse-gitignore": "^1.0.1"
69
69
  },
70
70
  "devDependencies": {
71
- "@babel/eslint-parser": "7.18.9",
71
+ "@babel/eslint-parser": "7.19.1",
72
72
  "@types/eslint": "8.4.6",
73
73
  "@types/eslint-plugin-prettier": "3.1.0",
74
74
  "@types/prettier": "2.7.0",
75
- "@types/react": "18.0.18",
76
- "@typescript-eslint/parser": "5.36.1",
77
- "eslint": "8.23.0",
75
+ "@types/react": "18.0.20",
76
+ "@typescript-eslint/parser": "5.38.0",
77
+ "eslint": "8.23.1",
78
78
  "eslint-config-prettier": "8.5.0",
79
79
  "eslint-index": "1.5.0",
80
80
  "prettier": "2.7.1",
@@ -96,5 +96,5 @@
96
96
  "publishConfig": {
97
97
  "access": "public"
98
98
  },
99
- "gitHead": "f75f847322f3dcb879e5a52e09dd834ab15b9186"
99
+ "gitHead": "4223a68016e247672c7252281669c739a0329678"
100
100
  }