@w5s/mrm-preset 2.10.0 → 2.11.0

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/.eslintrc.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "rules": {
3
+ "n/no-sync": "off",
3
4
  "import/no-unresolved": "off"
4
5
  }
5
6
  }
@@ -1,4 +1,4 @@
1
1
 
2
- > @w5s/mrm-preset@2.10.0 prepare:empty
2
+ > @w5s/mrm-preset@2.11.0 prepare:empty
3
3
  > :
4
4
 
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.11.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.10.1...@w5s/mrm-preset@2.11.0) (2025-01-08)
7
+
8
+ ### ✨ Features
9
+
10
+ - Add eslint-plugin-n plugin ([754d716](https://github.com/w5s/project-config/commit/754d716))
11
+
12
+ **Note:** Version bump only for package @w5s/mrm-preset
13
+
14
+ ## [2.10.1](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.10.0...@w5s/mrm-preset@2.10.1) (2024-12-20)
15
+
16
+ ### 🐛 Bug Fixes
17
+
18
+ - Fix npmClient publishing with syncWorkspaceLock conflict ([7266022](https://github.com/w5s/project-config/commit/7266022))
19
+
20
+ **Note:** Version bump only for package @w5s/mrm-preset
21
+
6
22
  # [2.10.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.9.0...@w5s/mrm-preset@2.10.0) (2024-12-20)
7
23
 
8
24
  ### ✨ Features
@@ -1,4 +1,5 @@
1
1
  const path = require('node:path');
2
+ const process = require('node:process');
2
3
  const { packageJson } = require('mrm-core');
3
4
  const npm = require('../core/npm.js');
4
5
  const pkg = require('../core/pkg.js');
@@ -13,7 +13,7 @@
13
13
  when: always
14
14
  - when: never
15
15
  image:
16
- name: renovate/renovate@sha256:d97bf388a4b21221ffb767355e0288e7b7aa3236b600eea24341cf4e58bcb2f5
16
+ name: renovate/renovate@sha256:fe6475e56915dbcd948cf7b94b879d38d2c261fbe7e2b869d35556229a5fce9c
17
17
  entrypoint: ['']
18
18
  script:
19
19
  - >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "2.10.0",
3
+ "version": "2.11.0",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -24,7 +24,7 @@
24
24
  "postpack": "npx clean-package restore"
25
25
  },
26
26
  "dependencies": {
27
- "@w5s/dev": "^2.2.19",
27
+ "@w5s/dev": "^2.3.0",
28
28
  "debug": "^4.3.3",
29
29
  "glob": "^11.0.0",
30
30
  "mrm-core": "^7.0.0",
@@ -38,5 +38,5 @@
38
38
  "access": "public"
39
39
  },
40
40
  "sideEffect": false,
41
- "gitHead": "9b556d00310ad9409a0962d7da8388dad5720d33"
41
+ "gitHead": "2e302c874daea8739aee214365edff536ae5c263"
42
42
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "2.10.0",
3
+ "version": "2.11.0",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -39,7 +39,7 @@
39
39
  "test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
40
40
  },
41
41
  "dependencies": {
42
- "@w5s/dev": "^2.2.19",
42
+ "@w5s/dev": "^2.3.0",
43
43
  "debug": "^4.3.3",
44
44
  "glob": "^11.0.0",
45
45
  "mrm-core": "^7.0.0",
@@ -59,5 +59,5 @@
59
59
  "access": "public"
60
60
  },
61
61
  "sideEffect": false,
62
- "gitHead": "9b556d00310ad9409a0962d7da8388dad5720d33"
62
+ "gitHead": "2e302c874daea8739aee214365edff536ae5c263"
63
63
  }
package/project/index.js CHANGED
@@ -239,7 +239,6 @@ function task() {
239
239
  command: {
240
240
  publish: {
241
241
  conventionalCommits: true,
242
- npmClient: 'npm',
243
242
  syncWorkspaceLock: true,
244
243
  },
245
244
  version: {
@@ -1,6 +0,0 @@
1
-
2
- 
3
- > @w5s/mrm-preset@2.9.0 build:tsc
4
- > tsc
5
-
6
- ⠙⠙
@@ -1,4 +0,0 @@
1
-
2
- > @w5s/mrm-preset@2.8.7 format:src
3
- > eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
4
-
@@ -1,6 +0,0 @@
1
-
2
- ⠙
3
- > @w5s/mrm-preset@2.9.0 lint:src
4
- > eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
5
-
6
- ⠙⠙
@@ -1 +0,0 @@
1
- CSpell: Files checked: 52, Issues found: 0 in 0 files.
@@ -1,70 +0,0 @@
1
-
2
- 
3
- > @w5s/mrm-preset@2.9.0 test:script
4
- > mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
5
-
6
- mkdir: _tester: File exists
7
- Running bootstrap...
8
- Running alias configure...
9
- Running gitignore...
10
- Running project...
11
- Running contributing...
12
- Running licenses...
13
- Running asdf...
14
- Running release...
15
- Running ci...
16
- Running lang...
17
- Running commitlint...
18
- Running editorconfig...
19
- Running eslint...
20
- Installing @w5s/eslint-config...
21
- ⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹npm error code ERESOLVE
22
- ⠹npm error ERESOLVE could not resolve
23
- ⠹npm error
24
- ⠹npm error While resolving: @w5s/eslint-config@2.2.6
25
- npm error Found: eslint@9.13.0
26
- npm error node_modules/eslint
27
- npm error peer eslint@"^6.0.0 || ^7.0.0 || >=8.0.0" from @eslint-community/eslint-utils@4.4.0
28
- npm error node_modules/@eslint-community/eslint-utils
29
- npm error @eslint-community/eslint-utils@"^4.2.0" from eslint@9.13.0
30
- npm error dev eslint@"^9.13.0" from the root project
31
- npm error 2 more (@typescript-eslint/eslint-plugin, @typescript-eslint/parser)
32
- npm error
33
- npm error Could not resolve dependency:
34
- npm error peerOptional eslint@"8.x" from @w5s/eslint-config@2.2.6
35
- npm error node_modules/@w5s/eslint-config
36
- npm error dev @w5s/eslint-config@"2.2.6" from the root project
37
- npm error
38
- npm error Conflicting peer dependency: eslint@8.57.1
39
- npm error node_modules/eslint
40
- npm error peerOptional eslint@"8.x" from @w5s/eslint-config@2.2.6
41
- npm error node_modules/@w5s/eslint-config
42
- npm error dev @w5s/eslint-config@"2.2.6" from the root project
43
- npm error
44
- npm error Fix the upstream dependency conflict, or retry
45
- npm error this command with --force or --legacy-peer-deps
46
- npm error to accept an incorrect (and potentially broken) dependency resolution.
47
- ⠹npm error
48
- npm error
49
- npm error For a full report see:
50
- npm error /Users/julienpolo/.npm/_logs/2024-12-20T11_07_46_737Z-eresolve-report.txt
51
- ⠹npm error A complete log of this run can be found in: /Users/julienpolo/.npm/_logs/2024-12-20T11_07_46_737Z-debug-0.log
52
- ⠹Running cspell...
53
- Running vitest...
54
- Running renovate...
55
- Running githooks...
56
- Running post-configure...
57
- Error: to format code
58
-
59
- > _tester@1.0.0-alpha.0 format
60
- > npx run-p "format:*"
61
-
62
-
63
- > _tester@1.0.0-alpha.0 format:root
64
- > eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --fix
65
-
66
- Invalid option '--ext' - perhaps you meant '-c'?
67
- You're using eslint.config.js, some command line flags are no longer available. Please see https://eslint.org/docs/latest/use/command-line-interface for details.
68
- ERROR: "format:root" exited with 2.
69
-
70
- ⠙⠙