@w5s/mrm-preset 1.1.0 → 1.1.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,6 +1,6 @@
1
1
  [1] : exited with code 0
2
2
  [tsc]
3
- [tsc] > @w5s/mrm-preset@1.0.4 build:tsc
3
+ [tsc] > @w5s/mrm-preset@1.1.0 build:tsc
4
4
  [tsc] > tsc --noEmit --skipLibCheck
5
5
  [tsc]
6
6
  [tsc] npm run build:tsc exited with code 0
@@ -1,6 +1,6 @@
1
1
  [1] : exited with code 0
2
2
  [src]
3
- [src] > @w5s/mrm-preset@1.0.4 lint:src
3
+ [src] > @w5s/mrm-preset@1.1.0 lint:src
4
4
  [src] > eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
5
5
  [src]
6
6
  [src] npm run lint:src exited with code 0
@@ -1,6 +1,6 @@
1
1
  [1] : exited with code 0
2
2
  [script]
3
- [script] > @w5s/mrm-preset@1.0.4 test:script
3
+ [script] > @w5s/mrm-preset@1.1.0 test:script
4
4
  [script] > mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
5
5
  [script]
6
6
  [script] mkdir: _tester: File exists
@@ -19,6 +19,30 @@
19
19
  [script] Update .vscode/extensions.json
20
20
  [script] Running editorconfig...
21
21
  [script] Running eslint...
22
+ [script] Installing @w5s/eslint-config...
23
+ [script] npm ERR! code ERESOLVE
24
+ [script] npm ERR! ERESOLVE unable to resolve dependency tree
25
+ [script] npm ERR!
26
+ [script] npm ERR! While resolving: _tester@1.0.0-alpha.0
27
+ [script] npm ERR! Found: prettier@3.0.0
28
+ [script] npm ERR! node_modules/prettier
29
+ [script] npm ERR! dev prettier@"^3.0.0" from the root project
30
+ [script] npm ERR!
31
+ [script] npm ERR! Could not resolve dependency:
32
+ npm ERR! peer prettier@"2.x" from @w5s/eslint-config@1.1.1
33
+ [script] npm ERR! node_modules/@w5s/eslint-config
34
+ [script] npm ERR! dev @w5s/eslint-config@"1.1.1" from the root project
35
+ [script] npm ERR!
36
+ [script] npm ERR! Fix the upstream dependency conflict, or retry
37
+ [script] npm ERR! this command with --force or --legacy-peer-deps
38
+ [script] npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
39
+ [script] npm ERR!
40
+ [script] npm ERR!
41
+ [script] npm ERR! For a full report see:
42
+ [script] npm ERR! /Users/julienpolo/Library/Caches/npm/_logs/2023-07-12T19_18_18_503Z-eresolve-report.txt
43
+ [script]
44
+ [script] npm ERR! A complete log of this run can be found in:
45
+ npm ERR! /Users/julienpolo/Library/Caches/npm/_logs/2023-07-12T19_18_18_503Z-debug-0.log
22
46
  [script] Running cspell...
23
47
  [script] Update .cspell.json
24
48
  [script] Running vitest...
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
+ ## [1.1.1](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.1.0...@w5s/mrm-preset@1.1.1) (2023-07-12)
7
+
8
+ **Note:** Version bump only for package @w5s/mrm-preset
9
+
10
+
11
+
12
+
13
+
6
14
  # [1.1.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.4...@w5s/mrm-preset@1.1.0) (2023-07-04)
7
15
 
8
16
  ### ✨ Features
package/eslint/index.js CHANGED
@@ -144,7 +144,7 @@ function createESLint({ eslintPreset: eslintPresetDefault = 'eslint:recommended'
144
144
  ts: 'typescript',
145
145
  yaml: 'yaml',
146
146
  yml: 'yaml',
147
- }[ext] || ext)
147
+ })[ext] || ext
148
148
  )
149
149
  )
150
150
  ),
package/githooks/index.js CHANGED
@@ -44,7 +44,11 @@ function task() {
44
44
  path: 'CODEOWNERS',
45
45
  state: gitSupported ? 'file' : 'absent',
46
46
  update: (content) =>
47
- content.length === 0 ? template('', path.join(__dirname, 'templates', 'CODEOWNERS')).apply().get() : undefined,
47
+ content.length === 0
48
+ ? template('', path.join(__dirname, 'templates', 'CODEOWNERS'))
49
+ .apply()
50
+ .get()
51
+ : undefined,
48
52
  });
49
53
  }
50
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "d1f8476f515b7be923ace0dba9ef86571f08747b"
55
+ "gitHead": "80e6661d57dd6ed7a832f7e34fe3eab7adcddb88"
56
56
  }
@@ -1,6 +0,0 @@
1
- [1] : exited with code 0
2
- [src]
3
- [src] > @w5s/mrm-preset@1.0.4 format:src
4
- [src] > eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
5
- [src]
6
- [src] npm run format:src exited with code SIGINT