@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 +1 -1
- package/README.md +0 -3
- package/lib/index.js +1 -1
- package/lib/service/index.js +1 -0
- package/package.json +7 -7
- package/src/index.ts +1 -1
- package/src/service/index.ts +1 -0
package/LICENSE.md
CHANGED
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
package/lib/service/index.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@roots/bud-compiler",
|
3
|
-
"version": "6.
|
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.
|
68
|
+
"@roots/bud-api": "6.24.0",
|
69
69
|
"@skypack/package-check": "0.2.2",
|
70
|
-
"@types/node": "20.
|
70
|
+
"@types/node": "20.16.10"
|
71
71
|
},
|
72
72
|
"dependencies": {
|
73
|
-
"@roots/bud-dashboard": "6.
|
74
|
-
"@roots/bud-framework": "6.
|
75
|
-
"@roots/bud-support": "6.
|
76
|
-
"tslib": "2.
|
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