@w5s/mrm-preset 1.0.0 → 1.0.2

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.45 build:tsc
3
+ [tsc] > @w5s/mrm-preset@1.0.1 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.45 lint:src
3
+ [src] > @w5s/mrm-preset@1.0.1 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,6 +1,6 @@
1
1
  [1] : exited with code 0
2
2
  [script]
3
- [script] > @w5s/mrm-preset@1.0.0-alpha.45 test:script
3
+ [script] > @w5s/mrm-preset@1.0.1 test:script
4
4
  [script] > mkdir _tester; cd _tester; mrm bootstrap --dir ..; mrm configure --dir ..
5
5
  [script]
6
6
  [script] mkdir: _tester: File exists
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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
+ ## <small>1.0.2 (2023-03-24)</small>
7
+
8
+ - ✨ Improve yarn berry support ([c5010cc](https://github.com/w5s/project-config/commit/c5010cc))
9
+ - 🐛 Fix github actions when merge queue ([6d8ab34](https://github.com/w5s/project-config/commit/6d8ab34))
10
+
11
+ ## <small>1.0.1 (2023-03-17)</small>
12
+
13
+ - ⬆️ Upgrade dependency glob to v9 ([4b51735](https://github.com/w5s/project-config/commit/4b51735))
14
+ - ⬆️ Upgrade dependency mrm to v4.1.14 ([7420490](https://github.com/w5s/project-config/commit/7420490))
15
+
6
16
  ## 1.0.0 (2023-03-05)
7
17
 
8
18
  - ✨ Add vitest support ([f2b1fe4](https://github.com/w5s/project-config/commit/f2b1fe4))
package/ci/github.js CHANGED
@@ -10,7 +10,7 @@ function task() {
10
10
  packageManager === 'npm'
11
11
  ? `${packageManager} ci`
12
12
  : packageManager === 'yarn'
13
- ? `${packageManager} install --frozen-lockfile`
13
+ ? `${packageManager} install --immutable`
14
14
  : `${packageManager} install`;
15
15
  githubCI.workflow({
16
16
  name: 'node.js.yml',
@@ -19,6 +19,7 @@ function task() {
19
19
  name: 'Node.js CI',
20
20
  ...config,
21
21
  on: {
22
+ merge_group: {},
22
23
  push: {
23
24
  branches: [baseBranch],
24
25
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/mrm-preset",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Mrm configuration presets",
5
5
  "keywords": [
6
6
  "mrm",
@@ -36,14 +36,14 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "debug": "^4.3.3",
39
- "glob": "^8.0.3",
39
+ "glob": "^9.0.0",
40
40
  "mrm-core": "^7.0.0",
41
41
  "semver-intersect": "^1.4.0",
42
42
  "sync-directory": "^6.0.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/debug": "4.1.7",
46
- "mrm": "4.1.13",
46
+ "mrm": "4.1.14",
47
47
  "mrm-preset-default": "4.1.11"
48
48
  },
49
49
  "engines": {
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "20f944de90b5a5c30d6446ced65271ea3fd31c99"
55
+ "gitHead": "f049ba295b93f420a3c673292baff2a25e1a2b70"
56
56
  }
@@ -1,9 +0,0 @@
1
- ✔ README.md Updated
2
- Transforms run
3
- ⁕ PKG_JSON:template=# W5s Mrm Preset _(${name})_
4
- ⁕ PKG_JSON:template=> ${description}&unknownTxt=
5
- ⁕ PKG_JSON:template=[${license}][license-url] © ${author}
6
- ⁕ PKG_JSON:template=[package-version-svg]: https://img.shields.io/npm/v/${name}.svg?style=flat-square
7
- ⁕ PKG_JSON:template=[package-url]: https://www.npmjs.com/package/${name}
8
- ⁕ PKG_JSON:template=[license-image]: https://img.shields.io/badge/license-${license}-green.svg?style=flat-square
9
-
@@ -1,6 +0,0 @@
1
- [1] : exited with code 0
2
- [src]
3
- [src] > @w5s/mrm-preset@1.0.0-alpha.45 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