@w5s/mrm-preset 2.2.2 → 2.3.0

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.2.1 build:tsc
3
+ [tsc] > @w5s/mrm-preset@2.2.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.2.1 lint:src
3
+ [src] > @w5s/mrm-preset@2.2.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
@@ -0,0 +1 @@
1
+ CSpell: Files checked: 52, Issues found: 0 in 0 files
@@ -1,6 +1,6 @@
1
1
  [1] : exited with code 0
2
2
  [script]
3
- [script] > @w5s/mrm-preset@2.2.1 test:script
3
+ [script] > @w5s/mrm-preset@2.2.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
@@ -25,5 +25,5 @@
25
25
  [script] Running vitest...
26
26
  [script] Running renovate...
27
27
  [script] Running githooks...
28
- [script] Running postconfigure...
28
+ [script] Running post-configure...
29
29
  [script] npm run test:script exited with code 0
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.3.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.2.2...@w5s/mrm-preset@2.3.0) (2023-10-27)
7
+
8
+ ### ✨ Features
9
+
10
+ - Run spellcheck in validate ([082b7fe](https://github.com/w5s/project-config/commit/082b7fe))
11
+
12
+ **Note:** Version bump only for package @w5s/mrm-preset
13
+
6
14
  ## [2.2.2](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.2.1...@w5s/mrm-preset@2.2.2) (2023-10-27)
7
15
 
8
16
  **Note:** Version bump only for package @w5s/mrm-preset
package/ci/github.js CHANGED
@@ -16,7 +16,7 @@ function task() {
16
16
  name: 'ci.yml',
17
17
  state,
18
18
  update: (config) => ({
19
- name: 'Continous Integration',
19
+ name: 'Continuous Integration',
20
20
  ...config,
21
21
  on: {
22
22
  merge_group: {},
package/config.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "vitest",
17
17
  "renovate",
18
18
  "githooks",
19
- "postconfigure"
19
+ "post-configure"
20
20
  ]
21
21
  }
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "2.2.2",
3
+ "version": "2.3.0",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "214e0244a63211d31c96ad0d43fd5b9d080beb67"
40
+ "gitHead": "37eb1edf3c6bd13162f8df1071795db2a52999c5"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "2.2.2",
3
+ "version": "2.3.0",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "214e0244a63211d31c96ad0d43fd5b9d080beb67"
59
+ "gitHead": "37eb1edf3c6bd13162f8df1071795db2a52999c5"
60
60
  }
package/project/index.js CHANGED
@@ -190,7 +190,7 @@ function task() {
190
190
 
191
191
  pkg.script(packageFile, {
192
192
  name: project.validate,
193
- update: `${turboRun([project.build, project.lint, project.test].join(' '))}`,
193
+ update: `${turboRun([project.build, project.lint, project.test, project.spellcheck].join(' '))}`,
194
194
  state: 'present',
195
195
  });
196
196
 
File without changes