@w5s/mrm-preset 1.2.0 → 1.2.1
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 +6 -0
- package/.turbo/turbo-lint.log +6 -0
- package/.turbo/turbo-test.log +25 -0
- package/CHANGELOG.md +13 -0
- package/package.json +3 -19
- package/package.json.backup +59 -0
- package/project/index.js +6 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[1] : exited with code 0
|
|
2
|
+
[script]
|
|
3
|
+
[script] > @w5s/mrm-preset@1.2.0 test:script
|
|
4
|
+
[script] > mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
|
|
5
|
+
[script]
|
|
6
|
+
[script] mkdir: _tester: File exists
|
|
7
|
+
[script] [36mRunning bootstrap...[39m
|
|
8
|
+
[script] [33mRunning alias configure...[39m
|
|
9
|
+
[script] [36mRunning gitignore...[39m
|
|
10
|
+
[script] [36mRunning project...[39m
|
|
11
|
+
[script] [36mRunning contributing...[39m
|
|
12
|
+
[script] [36mRunning licenses...[39m
|
|
13
|
+
[script] [36mRunning asdf...[39m
|
|
14
|
+
[script] [36mRunning release...[39m
|
|
15
|
+
[script] [36mRunning ci...[39m
|
|
16
|
+
[script] [36mRunning lang...[39m
|
|
17
|
+
[script] [36mRunning commitlint...[39m
|
|
18
|
+
[script] [36mRunning editorconfig...[39m
|
|
19
|
+
[script] [36mRunning eslint...[39m
|
|
20
|
+
[script] [36mRunning cspell...[39m
|
|
21
|
+
[script] [36mRunning vitest...[39m
|
|
22
|
+
[script] [36mRunning renovate...[39m
|
|
23
|
+
[script] [36mRunning githooks...[39m
|
|
24
|
+
[script] [36mRunning postconfigure...[39m
|
|
25
|
+
[script] npm run test:script exited with code 0
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.2.1](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.2.0...@w5s/mrm-preset@1.2.1) (2023-08-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- Fix doc configuration in mrm ([fe81b1a](https://github.com/w5s/project-config/commit/fe81b1a))
|
|
12
|
+
|
|
13
|
+
**Note:** Version bump only for package @w5s/mrm-preset
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
# [1.2.0](https://github.com/w5s/project-config/compare/@w5s/mrm-preset@1.1.1...@w5s/mrm-preset@1.2.0) (2023-08-01)
|
|
7
20
|
|
|
8
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/mrm-preset",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Mrm configuration presets",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mrm",
|
|
@@ -21,18 +21,7 @@
|
|
|
21
21
|
"type": "commonjs",
|
|
22
22
|
"main": "config.json",
|
|
23
23
|
"scripts": {
|
|
24
|
-
"
|
|
25
|
-
"build:tsc": "tsc --noEmit --skipLibCheck",
|
|
26
|
-
"clean": "concurrently \"npm:clean:*\" \":\"",
|
|
27
|
-
"docs": "node ../../markdown.mjs",
|
|
28
|
-
"format": "concurrently \"npm:format:*\" \":\"",
|
|
29
|
-
"format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
|
|
30
|
-
"lint": "concurrently \"npm:lint:*\" \":\"",
|
|
31
|
-
"lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
|
|
32
|
-
"prepare": "concurrently \"npm:prepare:*\" \":\"",
|
|
33
|
-
"spellcheck": "cspell --no-progress '**'",
|
|
34
|
-
"test": "concurrently \"npm:test:*\" \":\"",
|
|
35
|
-
"test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
|
|
24
|
+
"postpack": "npx clean-package restore"
|
|
36
25
|
},
|
|
37
26
|
"dependencies": {
|
|
38
27
|
"debug": "^4.3.3",
|
|
@@ -41,16 +30,11 @@
|
|
|
41
30
|
"semver-intersect": "^1.4.0",
|
|
42
31
|
"sync-directory": "^6.0.0"
|
|
43
32
|
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@types/debug": "4.1.8",
|
|
46
|
-
"mrm": "4.1.17",
|
|
47
|
-
"mrm-preset-default": "4.1.11"
|
|
48
|
-
},
|
|
49
33
|
"engines": {
|
|
50
34
|
"node": ">=16.0.0"
|
|
51
35
|
},
|
|
52
36
|
"publishConfig": {
|
|
53
37
|
"access": "public"
|
|
54
38
|
},
|
|
55
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "16aaafb3d78f8485ca110ee2842005e6b938111b"
|
|
56
40
|
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@w5s/mrm-preset",
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Mrm configuration presets",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mrm",
|
|
7
|
+
"config",
|
|
8
|
+
"bootstrap"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://github.com/w5s/project-config/blob/main/packages/mrm-preset#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/w5s/project-config.git/issues"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git@github.com:w5s/project-config.git",
|
|
17
|
+
"directory": "packages/mrm-preset"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"author": "Julien Polo <julien.polo@gmail.com>",
|
|
21
|
+
"type": "commonjs",
|
|
22
|
+
"main": "config.json",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "concurrently \"npm:build:*\" \":\"",
|
|
25
|
+
"build:tsc": "tsc --noEmit --skipLibCheck",
|
|
26
|
+
"clean": "concurrently \"npm:clean:*\" \":\"",
|
|
27
|
+
"docs": "node ../../markdown.mjs",
|
|
28
|
+
"format": "concurrently \"npm:format:*\" \":\"",
|
|
29
|
+
"format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
|
|
30
|
+
"lint": "concurrently \"npm:lint:*\" \":\"",
|
|
31
|
+
"lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
|
|
32
|
+
"postpack": "npx clean-package restore",
|
|
33
|
+
"prepack": "npx clean-package",
|
|
34
|
+
"prepare": "concurrently \"npm:prepare:*\" \":\"",
|
|
35
|
+
"spellcheck": "cspell --no-progress '**'",
|
|
36
|
+
"test": "concurrently \"npm:test:*\" \":\"",
|
|
37
|
+
"test:script": "mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir .."
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"debug": "^4.3.3",
|
|
41
|
+
"glob": "^10.0.0",
|
|
42
|
+
"mrm-core": "^7.0.0",
|
|
43
|
+
"semver-intersect": "^1.4.0",
|
|
44
|
+
"sync-directory": "^6.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/debug": "4.1.8",
|
|
48
|
+
"mrm": "4.1.17",
|
|
49
|
+
"mrm-preset-default": "4.1.11"
|
|
50
|
+
},
|
|
51
|
+
"clean-package": "../../clean-package.config.cjs",
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=16.0.0"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
},
|
|
58
|
+
"gitHead": "16aaafb3d78f8485ca110ee2842005e6b938111b"
|
|
59
|
+
}
|
package/project/index.js
CHANGED
|
@@ -254,6 +254,7 @@ function task() {
|
|
|
254
254
|
update: (_) => ({
|
|
255
255
|
..._,
|
|
256
256
|
pipeline: {
|
|
257
|
+
..._.pipeline,
|
|
257
258
|
[project.build]: {
|
|
258
259
|
dependsOn: [`^${project.build}`, `//#${project.build}:root`],
|
|
259
260
|
outputs: ['lib/**', 'dist/**', '.next/**'],
|
|
@@ -272,7 +273,11 @@ function task() {
|
|
|
272
273
|
dependsOn: [`//#${project.format}:root`],
|
|
273
274
|
},
|
|
274
275
|
[`//#${project.format}:root`]: {},
|
|
275
|
-
[project.docs]: {
|
|
276
|
+
[project.docs]: {
|
|
277
|
+
dependsOn: [`//#${project.docs}:root`],
|
|
278
|
+
cache: false,
|
|
279
|
+
},
|
|
280
|
+
[`//#${project.docs}:root`]: {},
|
|
276
281
|
[project.spellcheck]: {
|
|
277
282
|
dependsOn: [`//#${project.spellcheck}:root`],
|
|
278
283
|
},
|