@w5s/mrm-preset 1.0.0-alpha.38 → 1.0.0-alpha.39

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.37 build:tsc
3
+ [tsc] > @w5s/mrm-preset@1.0.0-alpha.38 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.37 format:src
3
+ [src] > @w5s/mrm-preset@1.0.0-alpha.38 format:src
4
4
  [src] > eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml
5
5
  [src]
6
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.37 lint:src
3
+ [src] > @w5s/mrm-preset@1.0.0-alpha.38 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.37 test:src
2
+ [src] > @w5s/mrm-preset@1.0.0-alpha.38 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
@@ -13,6 +13,7 @@
13
13
  [src] Running release...
14
14
  [src] Running ci...
15
15
  [src] Running lang...
16
+ [src] Update .gitignore
16
17
  [src] Update tsconfig.json
17
18
  [src] Running commitlint...
18
19
  [src] Update .vscode/extensions.json
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.39](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.38...@w5s/mrm-preset@1.0.0-alpha.39) (2023-01-22)
7
+
8
+ **Note:** Version bump only for package @w5s/mrm-preset
9
+
6
10
  # [1.0.0-alpha.38](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.37...@w5s/mrm-preset@1.0.0-alpha.38) (2023-01-11)
7
11
 
8
12
  ### Reverts
package/lang/index.js CHANGED
@@ -34,7 +34,7 @@ function createLang({ language: languageDefault = 'typescript', tsConfig: tsConf
34
34
  const tsConfig = json('tsconfig.json');
35
35
 
36
36
  // Should be run first
37
- gitIgnore('Typescript', ['lib/*', '*.tsbuildinfo', 'typings/*']);
37
+ gitIgnore('Typescript', ['lib/', '*.tsbuildinfo', 'typings/']);
38
38
  eslintIgnore(['lib/']);
39
39
 
40
40
  // const excludeList = ['**/*.test.*', '**/*.spec.*', '**/__tests__/**'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "1.0.0-alpha.38",
3
+ "version": "1.0.0-alpha.39",
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": "68e11c0644e8d162b5b08bb4f40b4e42810e51bd"
54
+ "gitHead": "6fd7a3c49dc5e10d71a4b79d38194e2791d268eb"
55
55
  }
package/project/index.js CHANGED
@@ -39,14 +39,13 @@ const npmRunAll = (script, allowEmpty) => `concurrently "npm:${script}:*" ${allo
39
39
  function task() {
40
40
  const rootPackageFile = packageJson();
41
41
  const rootUseWorkspace = pkg.hasWorkspaces(rootPackageFile);
42
- const rootEngineMinVersion = Object.assign(
43
- {
44
- node: '>=12.x',
45
- yarn: '>=1.x',
46
- npm: '>=6.x',
47
- },
48
- mrmPackageJson.engines
49
- );
42
+ const rootEngineMinVersion = {
43
+ // @ts-ignore
44
+ node: '>=12.x',
45
+ yarn: '>=1.x',
46
+ npm: '>=6.x',
47
+ ...mrmPackageJson.engines,
48
+ };
50
49
  const gitSupported = git.hasGit();
51
50
  const packageManager = pkg.manager(rootPackageFile);
52
51
  const gitRepository = git.remoteSync();