@w5s/mrm-preset 3.2.1 → 3.2.3

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,4 +1,6 @@
1
-
2
- > @w5s/mrm-preset@3.2.0 build:tsc
3
- > tsc
4
-
1
+
2
+ 
3
+ > @w5s/mrm-preset@3.2.2 build:tsc
4
+ > tsc
5
+
6
+ ⠙⠙
@@ -1,6 +1,6 @@
1
1
 
2
- ⠙
3
- > @w5s/mrm-preset@3.2.0 lint:src
2
+ 
3
+ > @w5s/mrm-preset@3.2.2 lint:src
4
4
  > eslint .
5
5
 
6
6
  
@@ -1,4 +1,4 @@
1
1
 
2
- > @w5s/mrm-preset@3.2.1 prepare:empty
2
+ > @w5s/mrm-preset@3.2.3 prepare:empty
3
3
  > :
4
4
 
@@ -1 +1,2 @@
1
- CSpell: Files checked: 53, Issues found: 0 in 0 files.
1
+
2
+ 
@@ -1,23 +1,25 @@
1
-
2
- > @w5s/mrm-preset@3.2.0 test:script
3
- > mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
4
-
5
- mkdir: _tester: File exists
6
- Running bootstrap...
7
- Running alias configure...
8
- Running gitignore...
9
- Running project...
10
- Running contributing...
11
- Running licenses...
12
- Running asdf...
13
- Running release...
14
- Running ci...
15
- Running lang...
16
- Running commitlint...
17
- Running editorconfig...
18
- Running eslint...
19
- Running cspell...
20
- Running vitest...
21
- Running renovate...
22
- Running githooks...
23
- Running post-configure...
1
+
2
+ 
3
+ > @w5s/mrm-preset@3.2.2 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
+ Running cspell...
21
+ Running vitest...
22
+ Running renovate...
23
+ Running githooks...
24
+ Running post-configure...
25
+ ⠙⠙
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.2.3](github.com/w5s/project-config/compare/@w5s/mrm-preset@3.2.2...@w5s/mrm-preset@3.2.3) (2026-02-16)
7
+
8
+ **Note:** Version bump only for package @w5s/mrm-preset
9
+
10
+ ## [3.2.2](github.com/w5s/project-config/compare/@w5s/mrm-preset@3.2.1...@w5s/mrm-preset@3.2.2) (2026-02-16)
11
+
12
+ **Note:** Version bump only for package @w5s/mrm-preset
13
+
6
14
  ## [3.2.1](github.com/w5s/project-config/compare/@w5s/mrm-preset@3.2.0...@w5s/mrm-preset@3.2.1) (2026-01-25)
7
15
 
8
16
  ### 🐛 Bug Fixes
@@ -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:931d7d57f8c1fd0e2179dbff7cc7da4c9dd100998bc2b32afc85142d8efbc213
204
+ image: node:lts-alpine@sha256:4f696fbf39f383c1e486030ba6b289a5d9af541642fc78ab197e584a113b9c03
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:1c6d7458b8cf195926ba82fd2b3b3c07c0c580d2fa0edf54a19db9ff0c43c362
16
+ name: renovate/renovate@sha256:d24228ef1500fbc06832a76383e1815402cad86aec180a9a76433634a7e3961f
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": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -21,16 +21,37 @@
21
21
  "type": "commonjs",
22
22
  "main": "config.json",
23
23
  "scripts": {
24
- "postpack": "npx clean-package restore"
24
+ "build": "npx run-p \"build:*\"",
25
+ "build:tsc": "tsc",
26
+ "clean": "npx run-p \"clean:*\"",
27
+ "clean:tsc": "rm -rf dist",
28
+ "docs": "node ../../markdown.mjs",
29
+ "format": "npx run-p \"format:*\"",
30
+ "format:src": "eslint . --fix",
31
+ "lint": "npx run-p \"lint:*\"",
32
+ "lint:src": "eslint .",
33
+ "postpack": "npx clean-package restore",
34
+ "prepack": "npx clean-package",
35
+ "prepare": "npx run-p \"prepare:*\"",
36
+ "prepare:empty": ":",
37
+ "spellcheck": "cspell --no-progress '**'",
38
+ "test": "npx run-p \"test:*\"",
39
+ "test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
25
40
  },
26
41
  "dependencies": {
27
- "@w5s/dev": "^3.1.2",
42
+ "@w5s/dev": "^3.1.3",
28
43
  "debug": "^4.3.3",
29
44
  "glob": "^13.0.0",
30
45
  "mrm-core": "^7.0.0",
31
46
  "semver-intersect": "^1.4.0",
32
47
  "sync-directory": "^6.0.0"
33
48
  },
49
+ "devDependencies": {
50
+ "@types/debug": "4.1.12",
51
+ "mrm": "4.1.22",
52
+ "mrm-preset-default": "4.1.11"
53
+ },
54
+ "clean-package": "../../clean-package.config.mjs",
34
55
  "engines": {
35
56
  "node": ">=20.0.0"
36
57
  },
@@ -38,5 +59,5 @@
38
59
  "access": "public"
39
60
  },
40
61
  "sideEffect": false,
41
- "gitHead": "648be101c2d4f915b97ed7e318da47a6ac19eb5c"
62
+ "gitHead": "550810ad9a8d35378bb00361cd0080bd67058fc5"
42
63
  }
@@ -1,63 +0,0 @@
1
- {
2
- "name": "@w5s/mrm-preset",
3
- "version": "3.2.1",
4
- "description": "Mrm configuration presets",
5
- "keywords": [
6
- "mrm",
7
- "config",
8
- "bootstrap"
9
- ],
10
- "homepage": "https://github.com/w5s/project-config/blob/main/packages/mrm-preset#readme",
11
- "bugs": {
12
- "url": "https://github.com/w5s/project-config.git/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git@github.com:w5s/project-config.git",
17
- "directory": "packages/mrm-preset"
18
- },
19
- "license": "MIT",
20
- "author": "Julien Polo <julien.polo@gmail.com>",
21
- "type": "commonjs",
22
- "main": "config.json",
23
- "scripts": {
24
- "build": "npx run-p \"build:*\"",
25
- "build:tsc": "tsc",
26
- "clean": "npx run-p \"clean:*\"",
27
- "clean:tsc": "rm -rf dist",
28
- "docs": "node ../../markdown.mjs",
29
- "format": "npx run-p \"format:*\"",
30
- "format:src": "eslint . --fix",
31
- "lint": "npx run-p \"lint:*\"",
32
- "lint:src": "eslint .",
33
- "postpack": "npx clean-package restore",
34
- "prepack": "npx clean-package",
35
- "prepare": "npx run-p \"prepare:*\"",
36
- "prepare:empty": ":",
37
- "spellcheck": "cspell --no-progress '**'",
38
- "test": "npx run-p \"test:*\"",
39
- "test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
40
- },
41
- "dependencies": {
42
- "@w5s/dev": "^3.1.2",
43
- "debug": "^4.3.3",
44
- "glob": "^13.0.0",
45
- "mrm-core": "^7.0.0",
46
- "semver-intersect": "^1.4.0",
47
- "sync-directory": "^6.0.0"
48
- },
49
- "devDependencies": {
50
- "@types/debug": "4.1.12",
51
- "mrm": "4.1.22",
52
- "mrm-preset-default": "4.1.11"
53
- },
54
- "clean-package": "../../clean-package.config.cjs",
55
- "engines": {
56
- "node": ">=20.0.0"
57
- },
58
- "publishConfig": {
59
- "access": "public"
60
- },
61
- "sideEffect": false,
62
- "gitHead": "648be101c2d4f915b97ed7e318da47a6ac19eb5c"
63
- }