build-start-rebuild-perf 0.2.0 → 0.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.
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "solution": {
3
3
  "build-start-rebuild-perf": {
4
- "impact": "minor",
5
- "oldVersion": "0.1.0",
6
- "newVersion": "0.2.0",
4
+ "impact": "patch",
5
+ "oldVersion": "0.2.0",
6
+ "newVersion": "0.2.1",
7
7
  "tagName": "latest",
8
8
  "constraints": [
9
9
  {
10
- "impact": "minor",
11
- "reason": "Appears in changelog section :rocket: Enhancement"
10
+ "impact": "patch",
11
+ "reason": "Appears in changelog section :bug: Bug Fix"
12
12
  }
13
13
  ],
14
14
  "pkgJSONPath": "./package.json"
15
15
  }
16
16
  },
17
- "description": "## Release (2025-08-09)\n\n* build-start-rebuild-perf 0.2.0 (minor)\n\n#### :rocket: Enhancement\n* `build-start-rebuild-perf`\n * [#23](https://github.com/mainmatter/build-start-rebuild-perf/pull/23) Configurable timeout ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
17
+ "description": "## Release (2025-08-10)\n\n* build-start-rebuild-perf 0.2.1 (patch)\n\n#### :bug: Bug Fix\n* `build-start-rebuild-perf`\n * [#26](https://github.com/mainmatter/build-start-rebuild-perf/pull/26) The logLevel param is logLevel, not level ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
18
18
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-08-10)
4
+
5
+ * build-start-rebuild-perf 0.2.1 (patch)
6
+
7
+ #### :bug: Bug Fix
8
+ * `build-start-rebuild-perf`
9
+ * [#26](https://github.com/mainmatter/build-start-rebuild-perf/pull/26) The logLevel param is logLevel, not level ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
10
+
11
+ #### Committers: 1
12
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
13
+
3
14
  ## Release (2025-08-09)
4
15
 
5
16
  * build-start-rebuild-perf 0.2.0 (minor)
package/bin/cli.js CHANGED
@@ -9,7 +9,7 @@ program.parse();
9
9
  const options = program.opts();
10
10
  // get defaults like this: const DEFAULTS = program.options.map((option) => option.defaultValue);
11
11
 
12
- setLogLevel(options.level);
12
+ setLogLevel(options.logLevel);
13
13
 
14
14
  ["SIGINT", "SIGTERM", "SIGQUIT"].forEach((signal) => {
15
15
  process.on(signal, async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-start-rebuild-perf",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "repository": {