build-start-rebuild-perf 0.2.0 → 0.2.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,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.1",
6
+ "newVersion": "0.2.2",
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 :memo: Documentation"
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-11)\n\n* build-start-rebuild-perf 0.2.2 (patch)\n\n#### :memo: Documentation\n* `build-start-rebuild-perf`\n * [#31](https://github.com/mainmatter/build-start-rebuild-perf/pull/31) Add shoutout to Discorse for providing inspiration for this tool ([@pichfl](https://github.com/pichfl))\n\n#### Committers: 1\n- Florian Pichler ([@pichfl](https://github.com/pichfl))\n"
18
18
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-08-11)
4
+
5
+ * build-start-rebuild-perf 0.2.2 (patch)
6
+
7
+ #### :memo: Documentation
8
+ * `build-start-rebuild-perf`
9
+ * [#31](https://github.com/mainmatter/build-start-rebuild-perf/pull/31) Add shoutout to Discorse for providing inspiration for this tool ([@pichfl](https://github.com/pichfl))
10
+
11
+ #### Committers: 1
12
+ - Florian Pichler ([@pichfl](https://github.com/pichfl))
13
+
14
+ ## Release (2025-08-10)
15
+
16
+ * build-start-rebuild-perf 0.2.1 (patch)
17
+
18
+ #### :bug: Bug Fix
19
+ * `build-start-rebuild-perf`
20
+ * [#26](https://github.com/mainmatter/build-start-rebuild-perf/pull/26) The logLevel param is logLevel, not level ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
21
+
22
+ #### Committers: 1
23
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
24
+
3
25
  ## Release (2025-08-09)
4
26
 
5
27
  * build-start-rebuild-perf 0.2.0 (minor)
package/README.md CHANGED
@@ -6,6 +6,8 @@ Measures web app performance metrics:
6
6
  - Time to app load (waiting for an element selector)
7
7
  - Reload time after a file changes
8
8
 
9
+ Thanks to [Discorse](https://github.com/discourse/discourse/blob/7729810716210a0354b3b4d40006c3b12a92d14d/vite-perf-test.mjs) for providing inspiration for this script.
10
+
9
11
  ## Usage
10
12
 
11
13
  ```sh
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.2",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "repository": {
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "devDependencies": {
25
25
  "@biomejs/biome": "^2.1.3",
26
- "release-plan": "^0.16.0",
26
+ "release-plan": "^0.17.0",
27
27
  "vitest": "^3.2.4"
28
28
  },
29
29
  "scripts": {
@@ -18,9 +18,9 @@ jobs:
18
18
  timeout-minutes: 10
19
19
 
20
20
  steps:
21
- - uses: actions/checkout@v3
21
+ - uses: actions/checkout@v4
22
22
  - name: Install Node
23
- uses: actions/setup-node@v3
23
+ uses: actions/setup-node@v4
24
24
  with:
25
25
  node-version: 18
26
26
  cache: npm
@@ -35,9 +35,9 @@ jobs:
35
35
  timeout-minutes: 10
36
36
 
37
37
  steps:
38
- - uses: actions/checkout@v3
38
+ - uses: actions/checkout@v4
39
39
  - name: Install Node
40
- uses: actions/setup-node@v3
40
+ uses: actions/setup-node@v4
41
41
  with:
42
42
  node-version: 18
43
43
  cache: npm
@@ -57,21 +57,21 @@
57
57
  "ember-resolver": "^13.1.1",
58
58
  "ember-source": "~6.6.0",
59
59
  "ember-template-imports": "^4.3.0",
60
- "ember-template-lint": "^6.1.0",
60
+ "ember-template-lint": "^7.0.0",
61
61
  "ember-welcome-page": "^7.0.2",
62
62
  "eslint": "^9.32.0",
63
63
  "eslint-config-prettier": "^9.1.2",
64
64
  "eslint-plugin-ember": "^12.7.0",
65
65
  "eslint-plugin-n": "^17.21.3",
66
66
  "eslint-plugin-qunit": "^8.2.5",
67
- "globals": "^15.15.0",
67
+ "globals": "^16.0.0",
68
68
  "loader.js": "^4.7.0",
69
69
  "prettier": "^3.6.2",
70
70
  "prettier-plugin-ember-template-tag": "^2.1.0",
71
71
  "qunit": "^2.24.1",
72
72
  "qunit-dom": "^3.4.0",
73
73
  "stylelint": "^16.22.0",
74
- "stylelint-config-standard": "^36.0.1",
74
+ "stylelint-config-standard": "^39.0.0",
75
75
  "tracked-built-ins": "^3.4.0",
76
76
  "webpack": "^5.101.0"
77
77
  },