@w5s/mrm-preset 2.0.0 → 2.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.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-format.log +2 -18
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-prepare.log +1 -6
- package/.turbo/turbo-test.log +1 -1
- package/CHANGELOG.md +13 -0
- package/ci/github.js +2 -2
- package/editorconfig/_editorconfig +0 -3
- package/package.json +3 -3
- package/package.json.backup +3 -4
- package/project/index.js +1 -1
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-format.log
CHANGED
|
@@ -1,22 +1,6 @@
|
|
|
1
1
|
[1] : exited with code 0
|
|
2
2
|
[src]
|
|
3
|
-
[src] > @w5s/mrm-preset@
|
|
3
|
+
[src] > @w5s/mrm-preset@2.0.0 format:src
|
|
4
4
|
[src] > eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
|
|
5
5
|
[src]
|
|
6
|
-
[src]
|
|
7
|
-
[src] /Users/julienpolo/Code/w5s/project-config/packages/mrm-preset/core/git.js
|
|
8
|
-
[src] 2:31 error Unable to resolve path to module '@w5s/dev' import/no-unresolved
|
|
9
|
-
[src]
|
|
10
|
-
[src] /Users/julienpolo/Code/w5s/project-config/packages/mrm-preset/core/githooks.js
|
|
11
|
-
[src] 4:31 error Unable to resolve path to module '@w5s/dev' import/no-unresolved
|
|
12
|
-
[src]
|
|
13
|
-
[src] /Users/julienpolo/Code/w5s/project-config/packages/mrm-preset/editorconfig/index.js
|
|
14
|
-
[src] 2:31 error Unable to resolve path to module '@w5s/dev' import/no-unresolved
|
|
15
|
-
[src]
|
|
16
|
-
[src] ✖ 3 problems (3 errors, 0 warnings)
|
|
17
|
-
[src]
|
|
18
|
-
[src] npm ERR! Lifecycle script `format:src` failed with error:
|
|
19
|
-
[src] npm ERR! Error: command failed
|
|
20
|
-
[src] npm ERR! in workspace: @w5s/mrm-preset@1.3.0
|
|
21
|
-
[src] npm ERR! at location: /Users/julienpolo/Code/w5s/project-config/packages/mrm-preset
|
|
22
|
-
[src] npm run format:src exited with code 1
|
|
6
|
+
[src] npm run format:src exited with code 0
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-prepare.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.1.1](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.1.0...@w5s/mrm-preset@2.1.1) (2023-10-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @w5s/mrm-preset
|
|
9
|
+
|
|
10
|
+
# [2.1.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@2.0.0...@w5s/mrm-preset@2.1.0) (2023-10-15)
|
|
11
|
+
|
|
12
|
+
### ✨ Features
|
|
13
|
+
|
|
14
|
+
- Configure turbo format with --continue ([b4d3844](https://github.com/w5s/project-config/commit/b4d3844))
|
|
15
|
+
- Rename node.js.yml to ci.yml ([3d851c4](https://github.com/w5s/project-config/commit/3d851c4))
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @w5s/mrm-preset
|
|
18
|
+
|
|
6
19
|
# [2.0.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.4.0...@w5s/mrm-preset@2.0.0) (2023-10-13)
|
|
7
20
|
|
|
8
21
|
### 🎫 Chores
|
package/ci/github.js
CHANGED
|
@@ -13,10 +13,10 @@ function task() {
|
|
|
13
13
|
? `${packageManager} install --immutable`
|
|
14
14
|
: `${packageManager} install`;
|
|
15
15
|
githubCI.workflow({
|
|
16
|
-
name: '
|
|
16
|
+
name: 'ci.yml',
|
|
17
17
|
state,
|
|
18
18
|
update: (config) => ({
|
|
19
|
-
name: '
|
|
19
|
+
name: 'Continous Integration',
|
|
20
20
|
...config,
|
|
21
21
|
on: {
|
|
22
22
|
merge_group: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/mrm-preset",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
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.0.
|
|
27
|
+
"@w5s/dev": "^2.0.1",
|
|
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": "
|
|
40
|
+
"gitHead": "e7a31018a843da7bbcc5ddac2a32a7fd2630c951"
|
|
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.1.1",
|
|
4
4
|
"description": "Mrm configuration presets",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mrm",
|
|
@@ -32,13 +32,12 @@
|
|
|
32
32
|
"postpack": "npx clean-package restore",
|
|
33
33
|
"prepack": "npx clean-package",
|
|
34
34
|
"prepare": "concurrently \"npm:prepare:*\" \":\"",
|
|
35
|
-
"prepare:template": "cp ../../.editorconfig editorconfig/_editorconfig",
|
|
36
35
|
"spellcheck": "cspell --no-progress '**'",
|
|
37
36
|
"test": "concurrently \"npm:test:*\" \":\"",
|
|
38
37
|
"test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
|
-
"@w5s/dev": "^2.0.
|
|
40
|
+
"@w5s/dev": "^2.0.1",
|
|
42
41
|
"debug": "^4.3.3",
|
|
43
42
|
"glob": "^10.0.0",
|
|
44
43
|
"mrm-core": "^7.0.0",
|
|
@@ -57,5 +56,5 @@
|
|
|
57
56
|
"publishConfig": {
|
|
58
57
|
"access": "public"
|
|
59
58
|
},
|
|
60
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "e7a31018a843da7bbcc5ddac2a32a7fd2630c951"
|
|
61
60
|
}
|
package/project/index.js
CHANGED
|
@@ -96,7 +96,7 @@ function task() {
|
|
|
96
96
|
});
|
|
97
97
|
pkg.script(currentPackageFile, {
|
|
98
98
|
name: project.format,
|
|
99
|
-
update: useWorkspace ? turboRun(project.format) : npmRunAll(project.format, true),
|
|
99
|
+
update: useWorkspace ? `${turboRun(project.format)} --continue` : npmRunAll(project.format, true),
|
|
100
100
|
state: 'present',
|
|
101
101
|
});
|
|
102
102
|
|