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

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.31 build:tsc
3
+ [tsc] > @w5s/mrm-preset@1.0.0-alpha.33 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
- [format:*src]
3
- [format:*src] > @w5s/mrm-preset@1.0.0-alpha.29 format:src
4
- [format:*src] > eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
5
- [format:*src]
6
- [format:*src] npm run format:src exited with code 0
2
+ [src]
3
+ [src] > @w5s/mrm-preset@1.0.0-alpha.33 format:src
4
+ [src] > eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
5
+ [src]
6
+ [src] npm run format:src 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.31 lint:src
3
+ [src] > @w5s/mrm-preset@1.0.0-alpha.33 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.31 test:src
2
+ [src] > @w5s/mrm-preset@1.0.0-alpha.33 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
@@ -22,22 +22,4 @@
22
22
  [src] Running renovate...
23
23
  [src] Running githooks...
24
24
  [src] Running postconfigure...
25
- [src] Error: to format code
26
- [src]
27
- [src] > _tester@1.0.0-alpha.0 format
28
- [src] > concurrently "npm:format:*" ":"
29
- [src]
30
- [src] [1] : exited with code 0
31
- [src] [root]
32
- [src] [root] > _tester@1.0.0-alpha.0 format:root
33
- [src] [root] > eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --fix
34
- [src] [root]
35
- [src] [root]
36
- [src] [root] /Users/julienpolo/Code/Personal/project-config/packages/mrm-preset/_tester/src/index.spec.ts
37
- [src] [root] 1:20 error 'test' is defined but never used @typescript-eslint/no-unused-vars
38
- [src] [root]
39
- [src] [root] ✖ 1 problem (1 error, 0 warnings)
40
- [src] [root]
41
- [src] [root] npm run format:root exited with code 1
42
- [src]
43
25
  [src] npm run test:src 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
+ # [1.0.0-alpha.34](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.33...@w5s/mrm-preset@1.0.0-alpha.34) (2022-12-14)
7
+
8
+ **Note:** Version bump only for package @w5s/mrm-preset
9
+
10
+ # [1.0.0-alpha.33](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.32...@w5s/mrm-preset@1.0.0-alpha.33) (2022-12-12)
11
+
12
+ **Note:** Version bump only for package @w5s/mrm-preset
13
+
6
14
  # [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
15
 
8
16
  **Note:** Version bump only for package @w5s/mrm-preset
@@ -87,7 +87,7 @@ module.exports = createEditorConfig({
87
87
  max_line_length: 120,
88
88
  quote_type: 'single',
89
89
  },
90
- '*.{js,jsx,ts,tsx,js.hbs}': {
90
+ '*.{js,cjs,mjs,jsx,ts,tsx,js.hbs}': {
91
91
  indent_size: 2,
92
92
  indent_style: 'space',
93
93
  max_line_length: 120,
@@ -1,8 +1,8 @@
1
- import { describe, test, expect } from '@jest/globals'
1
+ import { describe, it, expect } from '@jest/globals'
2
2
  import { main } from './index.js';
3
3
 
4
4
  describe('index', () => {
5
- test('main', () => {
5
+ it('main', () => {
6
6
  expect(typeof main).toBe('function');
7
7
  });
8
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "1.0.0-alpha.32",
3
+ "version": "1.0.0-alpha.34",
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": "c1a2376de4ebf76162e6c0629304ae83ebe28d1e"
54
+ "gitHead": "2a262ca6b8389764322e1a855d38a31af795dbe1"
55
55
  }