build-start-rebuild-perf 0.2.1 → 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.
- package/.release-plan.json +4 -4
- package/CHANGELOG.md +11 -0
- package/README.md +2 -0
- package/package.json +2 -2
- package/test-ember-app/.github/workflows/ci.yml +4 -4
- package/test-ember-app/package.json +3 -3
package/.release-plan.json
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"build-start-rebuild-perf": {
|
|
4
4
|
"impact": "patch",
|
|
5
|
-
"oldVersion": "0.2.
|
|
6
|
-
"newVersion": "0.2.
|
|
5
|
+
"oldVersion": "0.2.1",
|
|
6
|
+
"newVersion": "0.2.2",
|
|
7
7
|
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
10
|
"impact": "patch",
|
|
11
|
-
"reason": "Appears in changelog section :
|
|
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-
|
|
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,16 @@
|
|
|
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
|
+
|
|
3
14
|
## Release (2025-08-10)
|
|
4
15
|
|
|
5
16
|
* build-start-rebuild-perf 0.2.1 (patch)
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "build-start-rebuild-perf",
|
|
3
|
-
"version": "0.2.
|
|
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.
|
|
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@
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
22
|
- name: Install Node
|
|
23
|
-
uses: actions/setup-node@
|
|
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@
|
|
38
|
+
- uses: actions/checkout@v4
|
|
39
39
|
- name: Install Node
|
|
40
|
-
uses: actions/setup-node@
|
|
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": "^
|
|
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": "^
|
|
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": "^
|
|
74
|
+
"stylelint-config-standard": "^39.0.0",
|
|
75
75
|
"tracked-built-ins": "^3.4.0",
|
|
76
76
|
"webpack": "^5.101.0"
|
|
77
77
|
},
|