@roots/bud-compiler 2023.6.5 → 2023.6.7
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/lib/compiler.service.js +16 -7
- package/package.json +6 -6
- package/src/compiler.test.ts +1 -1
package/lib/compiler.service.js
CHANGED
@@ -12,13 +12,22 @@ import * as Ink from 'ink';
|
|
12
12
|
* Wepback compilation controller class
|
13
13
|
*/
|
14
14
|
export class Compiler extends Service {
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
15
|
+
/**
|
16
|
+
* Compiler implementation
|
17
|
+
*/
|
18
|
+
implementation;
|
19
|
+
/**
|
20
|
+
* Compiler instance
|
21
|
+
*/
|
22
|
+
instance;
|
23
|
+
/**
|
24
|
+
* Compilation stats
|
25
|
+
*/
|
26
|
+
stats;
|
27
|
+
/**
|
28
|
+
* Configuration
|
29
|
+
*/
|
30
|
+
config = [];
|
22
31
|
/**
|
23
32
|
* Initiates compilation
|
24
33
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@roots/bud-compiler",
|
3
|
-
"version": "2023.6.
|
3
|
+
"version": "2023.6.7",
|
4
4
|
"description": "Compilation handler",
|
5
5
|
"engines": {
|
6
6
|
"node": ">=16"
|
@@ -71,19 +71,19 @@
|
|
71
71
|
"types": "./lib/index.d.ts",
|
72
72
|
"module": "./lib/index.js",
|
73
73
|
"devDependencies": {
|
74
|
-
"@roots/bud-api": "2023.6.
|
74
|
+
"@roots/bud-api": "2023.6.7",
|
75
75
|
"@skypack/package-check": "0.2.2",
|
76
76
|
"@types/node": "18.16.12",
|
77
77
|
"@types/react": "18.2.6"
|
78
78
|
},
|
79
79
|
"dependencies": {
|
80
|
-
"@roots/bud-dashboard": "2023.6.
|
81
|
-
"@roots/bud-framework": "2023.6.
|
82
|
-
"@roots/bud-support": "2023.6.
|
80
|
+
"@roots/bud-dashboard": "2023.6.7",
|
81
|
+
"@roots/bud-framework": "2023.6.7",
|
82
|
+
"@roots/bud-support": "2023.6.7",
|
83
83
|
"ink": "4.2.0",
|
84
84
|
"react": "18.2.0",
|
85
85
|
"tslib": "2.5.0",
|
86
|
-
"webpack": "5.
|
86
|
+
"webpack": "5.85.1"
|
87
87
|
},
|
88
88
|
"volta": {
|
89
89
|
"extends": "../../../package.json"
|
package/src/compiler.test.ts
CHANGED