@w5s/mrm-preset 3.4.3 → 3.5.1

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.
@@ -1,3 +1,2 @@
1
-
2
- $ pnpm run "/^build:.*/"
1
+ $ pnpm run "/^build:.*/"
3
2
  $ tsc
@@ -1,6 +1,7 @@
1
1
 
2
2
  $ pnpm run "/^format:.*/"
3
3
  $ eslint . --fix
4
+ Pages directory cannot be found at /Users/julien.polo/Code/w5s/project-config/packages/mrm-preset/pages or /Users/julien.polo/Code/w5s/project-config/packages/mrm-preset/src/pages. If using a custom path, please configure with the `no-html-link-for-pages` rule in your eslint config file.
4
5
  
5
6
  /Users/julien.polo/Code/w5s/project-config/packages/mrm-preset/ci/gitlab.js
6
7
  5:1 warning Prefer a more specific type to `any` jsdoc/reject-any-type
@@ -1,6 +1,6 @@
1
-
2
- $ pnpm run "/^lint:.*/"
1
+ $ pnpm run "/^lint:.*/"
3
2
  $ eslint .
3
+ Pages directory cannot be found at /Users/julien.polo/Code/w5s/project-config/packages/mrm-preset/pages or /Users/julien.polo/Code/w5s/project-config/packages/mrm-preset/src/pages. If using a custom path, please configure with the `no-html-link-for-pages` rule in your eslint config file.
4
4
  
5
5
  /Users/julien.polo/Code/w5s/project-config/packages/mrm-preset/ci/gitlab.js
6
6
  5:1 warning Prefer a more specific type to `any` jsdoc/reject-any-type
@@ -1,3 +1,2 @@
1
-
2
- $ cspell --no-progress '**'
1
+ $ cspell --no-progress '**'
3
2
 
@@ -1,5 +1,4 @@
1
-
2
- $ pnpm run "/^test:.*/"
1
+ $ pnpm run "/^test:.*/"
3
2
  $ mkdir -p .temp; cd .temp; mrm bootstrap --dir ..; mrm configure --dir ..
4
3
  Running bootstrap...
5
4
  Running alias configure...
@@ -1,3 +1,2 @@
1
-
2
- $ pnpm run "/^typecheck:.*/"
1
+ $ pnpm run "/^typecheck:.*/"
3
2
  $ tsc --noEmit
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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
+ ## [3.5.1](github.com/w5s/project-config/compare/@w5s/mrm-preset@3.5.0...@w5s/mrm-preset@3.5.1) (2026-06-12)
7
+
8
+ **Note:** Version bump only for package @w5s/mrm-preset
9
+
10
+ # [3.5.0](github.com/w5s/project-config/compare/@w5s/mrm-preset@3.4.1...@w5s/mrm-preset@3.5.0) (2026-06-11)
11
+
12
+ ### ✨ Features
13
+
14
+ - Enable e18e in ESLint configuration ([01cdd58](github.com/w5s/project-config/commits/01cdd58))
15
+
16
+ **Note:** Version bump only for package @w5s/mrm-preset
17
+
6
18
  ## [3.4.3](github.com/w5s/project-config/compare/@w5s/mrm-preset@3.4.1...@w5s/mrm-preset@3.4.3) (2026-06-05)
7
19
 
8
20
  **Note:** Version bump only for package @w5s/mrm-preset
@@ -201,7 +201,7 @@ variables:
201
201
  # IMAGE_NAME: $CI_REGISTRY_IMAGE
202
202
 
203
203
  .autodevops_node_image:
204
- image: node:lts-alpine@sha256:2bdb65ed1dab192432bc31c95f94155ca5ad7fc1392fb7eb7526ab682fa5bf14
204
+ image: node:lts-alpine@sha256:fb71d01345f11b708a3553c66e7c74074f2d506400ea81973343d915cb64eef0
205
205
 
206
206
  .autodevops_node_install:
207
207
  extends:
@@ -13,7 +13,7 @@
13
13
  when: always
14
14
  - when: never
15
15
  image:
16
- name: renovate/renovate@sha256:7ddbf899a371dec16a37c22e233a6b981c4d3fbfe3075dcf22a4f1ba22fe55a9
16
+ name: renovate/renovate@sha256:459b7e28aa54fa2fa7db83df6a2d6ad26de416a054ee554e7833203adf3d9a47
17
17
  entrypoint: ['']
18
18
  script:
19
19
  - >
package/core/asdf.js CHANGED
@@ -1,5 +1,7 @@
1
1
  const { file } = require('mrm-core');
2
2
 
3
+ const reToolVersion = /\s+/;
4
+
3
5
  /**
4
6
  * @typedef {{ [tool: string]: string }} ASDFConfig
5
7
  */
@@ -20,7 +22,7 @@ function asdfConfig({ state, update }) {
20
22
  const parsed = Object.fromEntries(
21
23
  content
22
24
  .split(eol)
23
- .map((_) => _.split(/\s+/, 2))
25
+ .map((_) => _.split(reToolVersion, 2))
24
26
  .filter((_) => _[0] !== ''),
25
27
  );
26
28
 
package/core/git.js CHANGED
@@ -28,7 +28,9 @@ exports.hasGit = hasGit;
28
28
  */
29
29
  function trimStartLine(content) {
30
30
  return content
31
+ // eslint-disable-next-line e18e/prefer-static-regex
31
32
  .split(/\n/)
33
+ // eslint-disable-next-line e18e/prefer-static-regex
32
34
  .map((line) => line.replace(/^\s+/, ''))
33
35
  .filter((_) => _.length > 0)
34
36
  .join('\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "3.4.3",
3
+ "version": "3.5.1",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -24,8 +24,8 @@
24
24
  "postpack": "clean-package restore"
25
25
  },
26
26
  "dependencies": {
27
- "@w5s/configurator-core": "^1.0.0-alpha.3",
28
- "@w5s/dev": "^3.3.3",
27
+ "@w5s/configurator-core": "^1.0.0-alpha.4",
28
+ "@w5s/dev": "^3.4.1",
29
29
  "debug": "^4.3.3",
30
30
  "glob": "^13.0.0",
31
31
  "mrm-core": "^7.0.0",
@@ -39,5 +39,5 @@
39
39
  "access": "public"
40
40
  },
41
41
  "sideEffect": false,
42
- "gitHead": "fc447207d2af5368f809a9a90d0e4056344b812a"
42
+ "gitHead": "3c34a3240794bd0fbad582a35457fb04a0567f65"
43
43
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "3.4.3",
3
+ "version": "3.5.1",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -39,8 +39,8 @@
39
39
  "typecheck:src": "tsc --noEmit"
40
40
  },
41
41
  "dependencies": {
42
- "@w5s/configurator-core": "^1.0.0-alpha.3",
43
- "@w5s/dev": "^3.3.3",
42
+ "@w5s/configurator-core": "^1.0.0-alpha.4",
43
+ "@w5s/dev": "^3.4.1",
44
44
  "debug": "^4.3.3",
45
45
  "glob": "^13.0.0",
46
46
  "mrm-core": "^7.0.0",
@@ -60,5 +60,5 @@
60
60
  "access": "public"
61
61
  },
62
62
  "sideEffect": false,
63
- "gitHead": "fc447207d2af5368f809a9a90d0e4056344b812a"
63
+ "gitHead": "3c34a3240794bd0fbad582a35457fb04a0567f65"
64
64
  }
package/project/index.js CHANGED
@@ -271,6 +271,7 @@ function task() {
271
271
  const rootInputs = [
272
272
  ...packageInputs,
273
273
  // Ignore workspaces
274
+ // eslint-disable-next-line e18e/prefer-static-regex
274
275
  ...pkg.listWorkspaceMatchers(rootPackageFile).map((_) => `!${_.replace(/\/\*$/, '/**')}`),
275
276
  ];
276
277