@w5s/mrm-preset 1.0.0-alpha.31 → 1.0.0-alpha.32

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@1.0.0-alpha.30 build:tsc
3
+ [tsc] > @w5s/mrm-preset@1.0.0-alpha.31 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@1.0.0-alpha.30 lint:src
3
+ [src] > @w5s/mrm-preset@1.0.0-alpha.31 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,5 +1,5 @@
1
1
  [src]
2
- [src] > @w5s/mrm-preset@1.0.0-alpha.30 test:src
2
+ [src] > @w5s/mrm-preset@1.0.0-alpha.31 test:src
3
3
  [src] > mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
4
4
  [src]
5
5
  [src] mkdir: _tester: File exists
@@ -33,7 +33,7 @@
33
33
  [src] [root] > eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --fix
34
34
  [src] [root]
35
35
  [src] [root]
36
- [src] [root] /Users/julienpolo/Workspace/Personal/project-config/packages/mrm-preset/_tester/src/index.spec.ts
36
+ [src] [root] /Users/julienpolo/Code/Personal/project-config/packages/mrm-preset/_tester/src/index.spec.ts
37
37
  [src] [root] 1:20 error 'test' is defined but never used @typescript-eslint/no-unused-vars
38
38
  [src] [root]
39
39
  [src] [root] ✖ 1 problem (1 error, 0 warnings)
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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.32](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.31...@w5s/mrm-preset@1.0.0-alpha.32) (2022-12-05)
7
+
8
+ **Note:** Version bump only for package @w5s/mrm-preset
9
+
6
10
  # [1.0.0-alpha.31](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.30...@w5s/mrm-preset@1.0.0-alpha.31) (2022-11-24)
7
11
 
8
12
  **Note:** Version bump only for package @w5s/mrm-preset
package/eslint/index.js CHANGED
@@ -29,7 +29,7 @@ function createESLint({ eslintPreset: eslintPresetDefault = 'eslint:recommended'
29
29
  'coverage/',
30
30
  'build/',
31
31
  '.cache/',
32
- 'public/',
32
+ './public/',
33
33
  ]);
34
34
 
35
35
  // Dependencies
@@ -50,7 +50,7 @@ function createESLint({ eslintPreset: eslintPresetDefault = 'eslint:recommended'
50
50
  npm.dependency({
51
51
  dev: true,
52
52
  name: eslintPreset,
53
- state: !eslintPreset.startsWith('eslint:') ? 'present' : 'absent',
53
+ state: eslintPreset.startsWith('eslint:') ? 'absent' : 'present',
54
54
  });
55
55
  eslintConfig({
56
56
  state: 'present',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "1.0.0-alpha.31",
3
+ "version": "1.0.0-alpha.32",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -51,5 +51,5 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "a0e28715a049dcfffbde753363f3133f69549a28"
54
+ "gitHead": "c1a2376de4ebf76162e6c0629304ae83ebe28d1e"
55
55
  }