@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.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-spellcheck.log +1 -0
- package/.turbo/turbo-test.log +2 -2
- package/CHANGELOG.md +8 -0
- package/ci/github.js +1 -1
- package/config.json +1 -1
- package/package.json +2 -2
- package/package.json.backup +2 -2
- package/project/index.js +1 -1
- /package/{postconfigure → post-configure}/index.js +0 -0
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CSpell: Files checked: 52, Issues found: 0 in 0 files
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[1] : exited with code 0
|
|
2
2
|
[script]
|
|
3
|
-
[script] > @w5s/mrm-preset@2.2.
|
|
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] [36mRunning vitest...[39m
|
|
26
26
|
[script] [36mRunning renovate...[39m
|
|
27
27
|
[script] [36mRunning githooks...[39m
|
|
28
|
-
[script] [36mRunning
|
|
28
|
+
[script] [36mRunning post-configure...[39m
|
|
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
package/config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/mrm-preset",
|
|
3
|
-
"version": "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": "
|
|
40
|
+
"gitHead": "37eb1edf3c6bd13162f8df1071795db2a52999c5"
|
|
41
41
|
}
|
package/package.json.backup
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/mrm-preset",
|
|
3
|
-
"version": "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": "
|
|
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
|