@w5s/mrm-preset 1.0.0-alpha.39 → 1.0.0-alpha.40
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-lint.log +1 -1
- package/.turbo/turbo-test.log +1 -2
- package/CHANGELOG.md +4 -0
- package/eslint/index.js +1 -9
- package/githooks/index.js +1 -0
- package/lang/index.js +0 -2
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[src]
|
|
2
|
-
[src] > @w5s/mrm-preset@1.0.0-alpha.
|
|
2
|
+
[src] > @w5s/mrm-preset@1.0.0-alpha.39 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,7 +13,6 @@
|
|
|
13
13
|
[src] [36mRunning release...[39m
|
|
14
14
|
[src] [36mRunning ci...[39m
|
|
15
15
|
[src] [36mRunning lang...[39m
|
|
16
|
-
[src] [32mUpdate .gitignore[39m
|
|
17
16
|
[src] [32mUpdate tsconfig.json[39m
|
|
18
17
|
[src] [36mRunning commitlint...[39m
|
|
19
18
|
[src] [32mUpdate .vscode/extensions.json[39m
|
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.40](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.0.0-alpha.39...@w5s/mrm-preset@1.0.0-alpha.40) (2023-01-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @w5s/mrm-preset
|
|
9
|
+
|
|
6
10
|
# [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
11
|
|
|
8
12
|
**Note:** Version bump only for package @w5s/mrm-preset
|
package/eslint/index.js
CHANGED
|
@@ -2,7 +2,7 @@ const { packageJson } = require('mrm-core');
|
|
|
2
2
|
const pkg = require('../core/pkg.js');
|
|
3
3
|
const npm = require('../core/npm.js');
|
|
4
4
|
const { gitIgnore } = require('../core/git.js');
|
|
5
|
-
const {
|
|
5
|
+
const { eslintConfig } = require('../core/eslint.js');
|
|
6
6
|
const project = require('../core/project.js');
|
|
7
7
|
const { vscodeSettings, vscodeRecommendedExtension } = require('../core/vscode.js');
|
|
8
8
|
|
|
@@ -23,14 +23,6 @@ function createESLint({ eslintPreset: eslintPresetDefault = 'eslint:recommended'
|
|
|
23
23
|
|
|
24
24
|
// Should be added first
|
|
25
25
|
gitIgnore('ESLint', ['.eslintcache']);
|
|
26
|
-
eslintIgnore([
|
|
27
|
-
// List of paths to ignore
|
|
28
|
-
'node_modules/',
|
|
29
|
-
'coverage/',
|
|
30
|
-
'build/',
|
|
31
|
-
'.cache/',
|
|
32
|
-
'./public/',
|
|
33
|
-
]);
|
|
34
26
|
|
|
35
27
|
// Dependencies
|
|
36
28
|
npm.dependency({
|
package/githooks/index.js
CHANGED
|
@@ -20,6 +20,7 @@ function task() {
|
|
|
20
20
|
update: (config) => ({
|
|
21
21
|
...config,
|
|
22
22
|
'*.{json,jsonc,json5}': [...(hasESLint ? ['eslint'] : [])],
|
|
23
|
+
'*.{yml,yaml}': [...(hasESLint ? ['eslint'] : [])],
|
|
23
24
|
'*.js?(x)': [...(hasESLint ? ['eslint'] : [])],
|
|
24
25
|
'*.ts?(x)': [
|
|
25
26
|
// TODO: https://github.com/okonet/lint-staged/issues/825
|
package/lang/index.js
CHANGED
|
@@ -3,7 +3,6 @@ const { json, file, template, packageJson } = require('mrm-core');
|
|
|
3
3
|
const npm = require('../core/npm.js');
|
|
4
4
|
const { gitIgnore } = require('../core/git.js');
|
|
5
5
|
const project = require('../core/project.js');
|
|
6
|
-
const { eslintIgnore } = require('../core/eslint.js');
|
|
7
6
|
// const { typedoc } = require('../core/typedoc.js');
|
|
8
7
|
const pkg = require('../core/pkg.js');
|
|
9
8
|
|
|
@@ -35,7 +34,6 @@ function createLang({ language: languageDefault = 'typescript', tsConfig: tsConf
|
|
|
35
34
|
|
|
36
35
|
// Should be run first
|
|
37
36
|
gitIgnore('Typescript', ['lib/', '*.tsbuildinfo', 'typings/']);
|
|
38
|
-
eslintIgnore(['lib/']);
|
|
39
37
|
|
|
40
38
|
// const excludeList = ['**/*.test.*', '**/*.spec.*', '**/__tests__/**'];
|
|
41
39
|
if (hasWorkspaces) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/mrm-preset",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.40",
|
|
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": "
|
|
54
|
+
"gitHead": "b4f8775d054f1ff693dceda2da275e16ab7ff9a5"
|
|
55
55
|
}
|