@roots/bud-compiler 2024.5.3-7 → 2024.5.5-8

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -69,9 +69,3 @@ However, the amount of effort needed to maintain and develop new features and pr
69
69
  <a href="https://worksitesafety.ca/careers/">
70
70
  <img src="https://cdn.roots.io/app/uploads/worksite-safety.svg" alt="Worksite Safety" width="200" height="150"/>
71
71
  </a>
72
- <a href="https://www.copiadigital.com/">
73
- <img src="https://cdn.roots.io/app/uploads/copia-digital.svg" alt="Copia Digital" width="200" height="150"/>
74
- </a>
75
- <a href="https://www.freave.com/">
76
- <img src="https://cdn.roots.io/app/uploads/freave.svg" alt="Freave" width="200" height="150"/>
77
- </a>
@@ -30,7 +30,7 @@ declare class Compiler extends Service implements BudCompiler {
30
30
  /**
31
31
  * {@link BudCompiler.onStats}
32
32
  */
33
- onStats(stats: Stats & MultiStats): void;
33
+ onStats(stats: MultiStats & Stats): void;
34
34
  /**
35
35
  * {@link BudCompiler.compile}
36
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roots/bud-compiler",
3
- "version": "2024.5.3-7",
3
+ "version": "2024.5.5-8",
4
4
  "description": "Compilation handler",
5
5
  "engines": {
6
6
  "node": ">=16"
@@ -65,16 +65,16 @@
65
65
  "types": "./lib/index.d.ts",
66
66
  "module": "./lib/index.js",
67
67
  "devDependencies": {
68
- "@roots/bud-api": "2024.5.3-7",
68
+ "@roots/bud-api": "2024.5.5-8",
69
69
  "@skypack/package-check": "0.2.2",
70
- "@types/node": "20.10.5",
71
- "@types/react": "18.2.45"
70
+ "@types/node": "20.12.8",
71
+ "@types/react": "18.3.1"
72
72
  },
73
73
  "dependencies": {
74
- "@roots/bud-dashboard": "2024.5.3-7",
75
- "@roots/bud-framework": "2024.5.3-7",
76
- "@roots/bud-support": "2024.5.3-7",
77
- "react": "18.2.0",
74
+ "@roots/bud-dashboard": "2024.5.5-8",
75
+ "@roots/bud-framework": "2024.5.5-8",
76
+ "@roots/bud-support": "2024.5.5-8",
77
+ "react": "18.3.1",
78
78
  "tslib": "2.6.2"
79
79
  },
80
80
  "volta": {
@@ -79,7 +79,7 @@ class Compiler extends Service implements BudCompiler {
79
79
  * {@link BudCompiler.onStats}
80
80
  */
81
81
  @bind
82
- public onStats(stats: Stats & MultiStats) {
82
+ public onStats(stats: MultiStats & Stats) {
83
83
  const makeNoticeTitle = (child: StatsCompilation) =>
84
84
  this.app.label !== child.name
85
85
  ? `${this.app.label} (${child.name})`