@plugjs/build 0.6.60 → 0.6.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/build",
3
- "version": "0.6.60",
3
+ "version": "0.6.62",
4
4
  "description": "Simple shared build using PlugJS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -30,12 +30,12 @@
30
30
  "transpile": "plug transpile"
31
31
  },
32
32
  "peerDependencies": {
33
- "@plugjs/cov8": "^0.6.67",
34
- "@plugjs/eslint": "^0.6.67",
35
- "@plugjs/eslint-plugin": "^0.5.0",
36
- "@plugjs/expect5": "^0.6.67",
37
- "@plugjs/plug": "^0.6.67",
38
- "@plugjs/typescript": "^0.6.67"
33
+ "@plugjs/cov8": "^0.6.69",
34
+ "@plugjs/eslint": "^0.6.69",
35
+ "@plugjs/eslint-plugin": "^0.5.2",
36
+ "@plugjs/expect5": "^0.6.69",
37
+ "@plugjs/plug": "^0.6.69",
38
+ "@plugjs/typescript": "^0.6.69"
39
39
  },
40
40
  "files": [
41
41
  "*.md",
@@ -5,6 +5,8 @@ export default [
5
5
 
6
6
  // ===== DEFINE THE LOCATION OF OUR TSCONFIG.JSON FILES ======================
7
7
  {
8
+ name: 'local/options',
9
+
8
10
  languageOptions: {
9
11
  parserOptions: {
10
12
  createDefaultProgram: false,
@@ -18,13 +20,15 @@ export default [
18
20
 
19
21
  // ===== ENSURE THAT OUR MAIN FILES DEPEND ONLY ON PROPER DEPENDENCIES =======
20
22
  {
23
+ name: 'local/imports',
24
+
21
25
  files: [ 'src/**' ],
22
26
  rules: {
23
27
  // Turn _ON_ dependencies checks only for sources
24
28
  'import-x/no-extraneous-dependencies': [ 'error', {
25
- 'devDependencies': true,
29
+ 'devDependencies': false,
30
+ 'optionalDependencies': false,
26
31
  'peerDependencies': true,
27
- 'optionalDependencies': true,
28
32
  'bundledDependencies': false,
29
33
  } ],
30
34
  },
@@ -33,6 +37,8 @@ export default [
33
37
  // ===== PROJECT LOCAL RULES =================================================
34
38
  // Add any extra rule not tied to a specific "files" pattern here, e.g.:
35
39
  // {
40
+ // name: 'local/rules',
41
+ //
36
42
  // rules: {
37
43
  // 'camelcase': 'off',
38
44
  // },
@@ -40,9 +46,11 @@ export default [
40
46
 
41
47
  // ===== IGNORED FILES =======================================================
42
48
  // REMEMBER! Ignores *must* be in its own configuration, they can not coexist
43
- // with "rules", "languageOptions", "files", ... or anything else, otherwise
44
- // ESLint will blaantly ignore the ignore files!
49
+ // with "rules", "languageOptions", "files", ... or anything else (ESLint v9
50
+ // flat config). Otherwise ESLint will blatantly ignore the ignored files!
45
51
  {
52
+ name: 'local/ignores',
53
+
46
54
  ignores: [
47
55
  'coverage/',
48
56
  'dist/',