@w5s/mrm-preset 2.4.2 → 2.4.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,6 +1,6 @@
1
1
  [1] : exited with code 0
2
2
  [tsc]
3
- [tsc] > @w5s/mrm-preset@2.4.1 build:tsc
3
+ [tsc] > @w5s/mrm-preset@2.4.2 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@2.4.1 lint:src
3
+ [src] > @w5s/mrm-preset@2.4.2 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@2.4.1 test:script
3
+ [script] > @w5s/mrm-preset@2.4.2 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
@@ -8,34 +8,7 @@
8
8
  [script] Running alias configure...
9
9
  [script] Running gitignore...
10
10
  [script] Running project...
11
- [script] Update package.json
12
11
  [script] Update turbo.json
13
- [script] Uninstalling npm-run-all...
14
- [script]
15
- [script] removed 23 packages, and audited 1055 packages in 4s
16
- [script]
17
- [script] 227 packages are looking for funding
18
- [script] run `npm fund` for details
19
- [script]
20
- [script] 4 vulnerabilities (2 moderate, 2 high)
21
- [script]
22
- [script] To address all issues, run:
23
- [script] npm audit fix
24
- [script]
25
- [script] Run `npm audit` for details.
26
- [script] Installing concurrently...
27
- [script]
28
- [script] added 8 packages, and audited 1063 packages in 5s
29
- [script]
30
- [script] 231 packages are looking for funding
31
- [script] run `npm fund` for details
32
- [script]
33
- [script] 4 vulnerabilities (2 moderate, 2 high)
34
- [script]
35
- [script] To address all issues, run:
36
- [script] npm audit fix
37
- [script]
38
- [script] Run `npm audit` for details.
39
12
  [script] Running contributing...
40
13
  [script] Running licenses...
41
14
  [script] Running asdf...
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
+ ## [2.4.3](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.4.2...@w5s/mrm-preset@2.4.3) (2024-03-31)
7
+
8
+ ### 🐛 Bug Fixes
9
+
10
+ - Fix husky installation ([fa8faf2](https://github.com/w5s/project-config/commit/fa8faf2))
11
+
12
+ **Note:** Version bump only for package @w5s/mrm-preset
13
+
6
14
  ## [2.4.2](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.4.1...@w5s/mrm-preset@2.4.2) (2024-03-28)
7
15
 
8
16
  ### 🐛 Bug Fixes
@@ -13,7 +13,7 @@
13
13
  when: always
14
14
  - when: never
15
15
  image:
16
- name: renovate/renovate@sha256:b7f4a2a50e5fb916fa639ac1acfd7ddd48509ac92bb816eddd71a14047479a98
16
+ name: renovate/renovate@sha256:b8a9d459056ae798b603e557e88d3810bd9b9f52de4d12e2eed17cfd36b93b80
17
17
  entrypoint: ['']
18
18
  script:
19
19
  - >
package/core/githooks.js CHANGED
@@ -26,7 +26,7 @@ function husky({ state }) {
26
26
  pkg.script(packageFile, {
27
27
  name: `${project.prepare}:githooks`,
28
28
  state: hasHusky ? 'present' : 'absent',
29
- update: `[ -n "\${CI:-}" ] || npx husky install ${hookDirectory}`,
29
+ update: `[ -n "\${CI:-}" ] || npx husky ${hookDirectory}`,
30
30
  });
31
31
  });
32
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
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.1.5",
27
+ "@w5s/dev": "^2.1.6",
28
28
  "debug": "^4.3.3",
29
29
  "glob": "^10.0.0",
30
30
  "mrm-core": "^7.0.0",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "77af3164140984f15a402ae3f8b4a9e39c13d89e"
40
+ "gitHead": "c3c5b0d607ebc781b5672e9ce8f95553d3bfed9c"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -37,7 +37,7 @@
37
37
  "test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
38
38
  },
39
39
  "dependencies": {
40
- "@w5s/dev": "^2.1.5",
40
+ "@w5s/dev": "^2.1.6",
41
41
  "debug": "^4.3.3",
42
42
  "glob": "^10.0.0",
43
43
  "mrm-core": "^7.0.0",
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "77af3164140984f15a402ae3f8b4a9e39c13d89e"
59
+ "gitHead": "c3c5b0d607ebc781b5672e9ce8f95553d3bfed9c"
60
60
  }