@w5s/mrm-preset 1.0.0-alpha.13 → 1.0.0-alpha.14

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 +1 @@
1
- @w5s/mrm-preset:build: cache hit, replaying output f00c77759cb37454
1
+ @w5s/mrm-preset:build: cache hit, replaying output c6b4f1c7f63e49b4
@@ -1,4 +1,4 @@
1
- @w5s/mrm-preset:docs: cache hit, replaying output bf59b36291ca9782
1
+ @w5s/mrm-preset:docs: cache hit, replaying output 744547a9c29d1593
2
2
  @w5s/mrm-preset:docs: Starting markdown-magic [ '**/*.md', '!node_modules/**' ]
3
3
  @w5s/mrm-preset:docs: ℹ Notice:
4
4
  @w5s/mrm-preset:docs: Missing transforms "BASIC_RULES","JSX_RULES" in _tester/node_modules/eslint-plugin-react/README.md
@@ -1 +1 @@
1
- @w5s/mrm-preset:format: cache hit, replaying output d9ab8a49347bb8ce
1
+ @w5s/mrm-preset:format: cache hit, replaying output 3dd24b3a1f0380bc
@@ -1 +1 @@
1
- @w5s/mrm-preset:lint: cache hit, replaying output b854c5088325daff
1
+ @w5s/mrm-preset:lint: cache hit, replaying output 55431f2ab0e89fe7
@@ -1,4 +1,4 @@
1
- @w5s/mrm-preset:test: cache hit, replaying output 4a4cf62937c5212f
1
+ @w5s/mrm-preset:test: cache hit, replaying output a48676b2c6596bd4
2
2
  @w5s/mrm-preset:test: mkdir: _tester: File exists
3
3
  @w5s/mrm-preset:test: Running bootstrap...
4
4
  @w5s/mrm-preset:test: Running alias configure...
@@ -12,8 +12,8 @@
12
12
  @w5s/mrm-preset:test: Running commitlint...
13
13
  @w5s/mrm-preset:test: Running editorconfig...
14
14
  @w5s/mrm-preset:test: Running eslint...
15
- @w5s/mrm-preset:test: Running cspell...
16
15
  @w5s/mrm-preset:test: Update package.json
16
+ @w5s/mrm-preset:test: Running cspell...
17
17
  @w5s/mrm-preset:test: Running jest...
18
18
  @w5s/mrm-preset:test: Update package.json
19
19
  @w5s/mrm-preset:test: Running renovate...
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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.0.0-alpha.14](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.13...@w5s/mrm-preset@1.0.0-alpha.14) (2022-06-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add prepare task to turbo configuration ([717d59a](https://github.com/w5s/project-config/commit/717d59a724c1de8cb37f37c23aae8f4cc57fc231))
12
+ * remove --quiet option on format ([268b0a7](https://github.com/w5s/project-config/commit/268b0a76dbd03cfa6729988472948a66e2b749c9))
13
+
14
+
15
+
16
+
17
+
6
18
  # [1.0.0-alpha.13](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.12...@w5s/mrm-preset@1.0.0-alpha.13) (2022-06-07)
7
19
 
8
20
 
package/eslint/index.js CHANGED
@@ -110,7 +110,7 @@ function createESLint({ eslintPreset: eslintPresetDefault = 'eslint:recommended'
110
110
  });
111
111
  pkg.script(packageFile, {
112
112
  name: `${project.format}:src`,
113
- script: `eslint . --quiet --fix${extOption}`,
113
+ script: `eslint . --fix${extOption}`,
114
114
  state: !hasWorkspaces ? 'present' : 'absent',
115
115
  });
116
116
  });
@@ -122,7 +122,7 @@ function createESLint({ eslintPreset: eslintPresetDefault = 'eslint:recommended'
122
122
  });
123
123
  pkg.script(packageFile, {
124
124
  name: project.format,
125
- script: `eslint . --quiet --fix${extOption}`,
125
+ script: `eslint . -fix${extOption}`,
126
126
  state: 'default',
127
127
  });
128
128
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "1.0.0-alpha.13",
3
+ "version": "1.0.0-alpha.14",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -24,7 +24,7 @@
24
24
  "build:empty": ":",
25
25
  "build:tsc": "tsc --noEmit --skipLibCheck",
26
26
  "docs": "md-magic --path '**/*.md' --ignore='node_modules'",
27
- "format": "eslint . --quiet --fix --ext=mjs,cjs,js,jsx,ts,tsx,json",
27
+ "format": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json",
28
28
  "lint": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json",
29
29
  "spellcheck": "cspell --no-progress '**'",
30
30
  "test": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
@@ -47,5 +47,5 @@
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "b05bfbed614927b6b50c0709d95e7e45c842b165"
50
+ "gitHead": "55a9106dcf41315e4a1e0fa73b912853c6cf6f06"
51
51
  }
package/project/index.js CHANGED
@@ -215,6 +215,7 @@ function task() {
215
215
  },
216
216
  [project.test]: {},
217
217
  [project.lint]: {},
218
+ [project.prepare]: {},
218
219
  [project.format]: {},
219
220
  [project.docs]: {},
220
221
  [project.spellcheck]: {},