@w5s/mrm-preset 2.11.4 → 2.11.5
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-format.log +4 -0
- package/.turbo/turbo-lint.log +2 -2
- package/.turbo/turbo-prepare.log +1 -1
- package/.turbo/turbo-test.log +66 -36
- package/CHANGELOG.md +8 -0
- package/ci/_gitlab/AutoDevopsInclude.gitlab-ci.yml +1 -1
- package/ci/_gitlab/Renovate.gitlab-ci.yml +1 -1
- package/package.json +3 -3
- package/package.json.backup +3 -3
- package/project/index.js +27 -7
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-prepare.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
[1G[0K
|
|
3
|
-
> @w5s/mrm-preset@2.11.
|
|
2
|
+
[1G[0K⠙[1G[0K
|
|
3
|
+
> @w5s/mrm-preset@2.11.4 test:script
|
|
4
4
|
> mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
|
|
5
5
|
|
|
6
6
|
[1G[0Kmkdir: _tester: File exists
|
|
@@ -18,39 +18,69 @@
|
|
|
18
18
|
[36mRunning editorconfig...[39m
|
|
19
19
|
[36mRunning eslint...[39m
|
|
20
20
|
Installing @w5s/eslint-config...
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
24
|
-
[
|
|
25
|
-
[
|
|
26
|
-
[
|
|
27
|
-
[
|
|
28
|
-
[
|
|
29
|
-
[
|
|
30
|
-
[
|
|
31
|
-
[
|
|
32
|
-
[
|
|
33
|
-
[
|
|
34
|
-
[
|
|
35
|
-
[
|
|
36
|
-
[
|
|
37
|
-
[
|
|
38
|
-
[
|
|
39
|
-
[
|
|
40
|
-
[
|
|
41
|
-
[
|
|
42
|
-
[
|
|
43
|
-
[
|
|
44
|
-
[
|
|
45
|
-
[
|
|
46
|
-
[
|
|
47
|
-
[
|
|
48
|
-
[
|
|
49
|
-
[
|
|
50
|
-
[
|
|
51
|
-
[
|
|
52
|
-
[
|
|
53
|
-
[36mRunning
|
|
21
|
+
[?25l([100;90m⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂⠂[0m) ⠹ idealTree: [32;40mtiming[0m [35marborist:ctor[0m Completed in 0ms[0m[K
|
|
22
|
+
[0m[37;40mnpm[0m [0m[31;40mERR for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.11.5](github.com/w5s/project-config/compare/@w5s/mrm-preset@2.11.4...@w5s/mrm-preset@2.11.5) (2025-06-26)
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Fix cache miss for turbo ([e920f0c](github.com/w5s/project-config/commits/e920f0c))
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @w5s/mrm-preset
|
|
13
|
+
|
|
6
14
|
## <small>2.11.4 (2025-04-01)</small>
|
|
7
15
|
|
|
8
16
|
* 🐛 Remove CI_* so it does not trigger turbo cache miss ([ca61743](https://github.com/w5s/project-config/commit/ca61743))
|
|
@@ -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:
|
|
204
|
+
image: node:lts-alpine@sha256:5340cbfc2df14331ab021555fdd9f83f072ce811488e705b0e736b11adeec4bb
|
|
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:
|
|
16
|
+
name: renovate/renovate@sha256:82e313260bf600c52472bb42d6ac7f0a6468675b766bbb87ef8c0e8f3c00d1da
|
|
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.11.
|
|
3
|
+
"version": "2.11.5",
|
|
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.5.
|
|
27
|
+
"@w5s/dev": "^2.5.3",
|
|
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": "
|
|
41
|
+
"gitHead": "e50ce223ae442c3c06efe68aae22809092184290"
|
|
42
42
|
}
|
package/package.json.backup
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/mrm-preset",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.5",
|
|
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.5.
|
|
42
|
+
"@w5s/dev": "^2.5.3",
|
|
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": "
|
|
62
|
+
"gitHead": "e50ce223ae442c3c06efe68aae22809092184290"
|
|
63
63
|
}
|
package/project/index.js
CHANGED
|
@@ -257,6 +257,13 @@ function task() {
|
|
|
257
257
|
|
|
258
258
|
rootPackageFile.save();
|
|
259
259
|
|
|
260
|
+
const packageInputs = ['$TURBO_DEFAULT$', '.env*'];
|
|
261
|
+
const rootInputs = [
|
|
262
|
+
...packageInputs,
|
|
263
|
+
// Ignore workspaces
|
|
264
|
+
...pkg.listWorkspaceMatchers(rootPackageFile).map((_) => `!${_.replace(/\/\*$/, '/**')}`),
|
|
265
|
+
];
|
|
266
|
+
|
|
260
267
|
// Turbo config
|
|
261
268
|
turbo({
|
|
262
269
|
state: 'present',
|
|
@@ -268,32 +275,44 @@ function task() {
|
|
|
268
275
|
..._.tasks,
|
|
269
276
|
[project.build]: {
|
|
270
277
|
dependsOn: [`^${project.build}`, `//#${project.build}:root`],
|
|
271
|
-
inputs:
|
|
278
|
+
inputs: packageInputs,
|
|
272
279
|
outputs: ['dist/**', '.next/**', '!.next/cache/**'],
|
|
273
280
|
},
|
|
274
|
-
[`//#${project.build}:root`]: {
|
|
281
|
+
[`//#${project.build}:root`]: {
|
|
282
|
+
inputs: rootInputs,
|
|
283
|
+
},
|
|
275
284
|
[project.test]: {
|
|
276
285
|
dependsOn: [`^${project.build}`, `//#${project.test}:root`],
|
|
277
286
|
},
|
|
278
|
-
[`//#${project.test}:root`]: {
|
|
287
|
+
[`//#${project.test}:root`]: {
|
|
288
|
+
inputs: rootInputs,
|
|
289
|
+
},
|
|
279
290
|
[project.lint]: {
|
|
280
291
|
dependsOn: [`^${project.build}`, `//#${project.lint}:root`],
|
|
281
292
|
},
|
|
282
|
-
[`//#${project.lint}:root`]: {
|
|
293
|
+
[`//#${project.lint}:root`]: {
|
|
294
|
+
inputs: rootInputs,
|
|
295
|
+
},
|
|
283
296
|
[project.prepare]: {},
|
|
284
297
|
[project.format]: {
|
|
285
298
|
dependsOn: [`//#${project.format}:root`],
|
|
286
299
|
},
|
|
287
|
-
[`//#${project.format}:root`]: {
|
|
300
|
+
[`//#${project.format}:root`]: {
|
|
301
|
+
inputs: rootInputs,
|
|
302
|
+
},
|
|
288
303
|
[project.docs]: {
|
|
289
304
|
dependsOn: [`//#${project.docs}:root`],
|
|
290
305
|
cache: false,
|
|
291
306
|
},
|
|
292
|
-
[`//#${project.docs}:root`]: {
|
|
307
|
+
[`//#${project.docs}:root`]: {
|
|
308
|
+
inputs: rootInputs,
|
|
309
|
+
},
|
|
293
310
|
[project.spellcheck]: {
|
|
294
311
|
dependsOn: [`//#${project.spellcheck}:root`],
|
|
295
312
|
},
|
|
296
|
-
[`//#${project.spellcheck}:root`]: {
|
|
313
|
+
[`//#${project.spellcheck}:root`]: {
|
|
314
|
+
inputs: rootInputs,
|
|
315
|
+
},
|
|
297
316
|
[project.clean]: {
|
|
298
317
|
dependsOn: [`//#${project.clean}:root`],
|
|
299
318
|
cache: false,
|
|
@@ -302,6 +321,7 @@ function task() {
|
|
|
302
321
|
cache: false,
|
|
303
322
|
},
|
|
304
323
|
[project.develop]: {
|
|
324
|
+
persistent: true,
|
|
305
325
|
cache: false,
|
|
306
326
|
},
|
|
307
327
|
},
|