@roots/bud-compiler 6.23.2 → 6.24.0

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/LICENSE.md CHANGED
@@ -1,4 +1,4 @@
1
- Copyright © Roots Software Foundation LLC
1
+ Copyright © Roots Software LLC
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of
4
4
  this software and associated documentation files (the "Software"), to deal in
package/README.md CHANGED
@@ -57,9 +57,6 @@ Keep track of development and community news.
57
57
 
58
58
  However, the amount of effort needed to maintain and develop new features and projects within the Roots ecosystem is not sustainable without proper financial backing. If you have the capability, please consider [sponsoring Roots](https://github.com/sponsors/roots).
59
59
 
60
- <a href="https://k-m.com/">
61
- <img src="https://cdn.roots.io/app/uploads/km-digital.svg" alt="KM Digital" width="200" height="150"/>
62
- </a>
63
60
  <a href="https://carrot.com/">
64
61
  <img src="https://cdn.roots.io/app/uploads/carrot.svg" alt="Carrot" width="200" height="150"/>
65
62
  </a>
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright © Roots Software Foundation LLC
1
+ // Copyright © Roots Software LLC
2
2
  // Licensed under the MIT license.
3
3
  /**
4
4
  * @roots/bud-compiler
@@ -27,6 +27,7 @@ class Compiler extends Service {
27
27
  onStats(stats) {
28
28
  this.stats = stats.toJson({
29
29
  all: false,
30
+ // @ts-ignore
30
31
  children: {
31
32
  all: false,
32
33
  assets: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roots/bud-compiler",
3
- "version": "6.23.2",
3
+ "version": "6.24.0",
4
4
  "description": "Compilation handler",
5
5
  "engines": {
6
6
  "node": ">=16"
@@ -65,15 +65,15 @@
65
65
  "types": "./lib/index.d.ts",
66
66
  "module": "./lib/index.js",
67
67
  "devDependencies": {
68
- "@roots/bud-api": "6.23.2",
68
+ "@roots/bud-api": "6.24.0",
69
69
  "@skypack/package-check": "0.2.2",
70
- "@types/node": "20.14.12"
70
+ "@types/node": "20.16.10"
71
71
  },
72
72
  "dependencies": {
73
- "@roots/bud-dashboard": "6.23.2",
74
- "@roots/bud-framework": "6.23.2",
75
- "@roots/bud-support": "6.23.2",
76
- "tslib": "2.6.3"
73
+ "@roots/bud-dashboard": "6.24.0",
74
+ "@roots/bud-framework": "6.24.0",
75
+ "@roots/bud-support": "6.24.0",
76
+ "tslib": "2.7.0"
77
77
  },
78
78
  "volta": {
79
79
  "extends": "../../../package.json"
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright © Roots Software Foundation LLC
1
+ // Copyright © Roots Software LLC
2
2
  // Licensed under the MIT license.
3
3
 
4
4
  /**
@@ -50,6 +50,7 @@ class Compiler extends Service implements BudCompiler {
50
50
  public onStats(stats: MultiStats) {
51
51
  this.stats = stats.toJson({
52
52
  all: false,
53
+ // @ts-ignore
53
54
  children: {
54
55
  all: false,
55
56
  assets: true,