@roots/bud-compiler 2023.6.5 → 2023.6.6

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.
@@ -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
- constructor() {
16
- super(...arguments);
17
- /**
18
- * Configuration
19
- */
20
- this.config = [];
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.5",
3
+ "version": "2023.6.6",
4
4
  "description": "Compilation handler",
5
5
  "engines": {
6
6
  "node": ">=16"
@@ -71,15 +71,15 @@
71
71
  "types": "./lib/index.d.ts",
72
72
  "module": "./lib/index.js",
73
73
  "devDependencies": {
74
- "@roots/bud-api": "2023.6.5",
74
+ "@roots/bud-api": "2023.6.6",
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.5",
81
- "@roots/bud-framework": "2023.6.5",
82
- "@roots/bud-support": "2023.6.5",
80
+ "@roots/bud-dashboard": "2023.6.6",
81
+ "@roots/bud-framework": "2023.6.6",
82
+ "@roots/bud-support": "2023.6.6",
83
83
  "ink": "4.2.0",
84
84
  "react": "18.2.0",
85
85
  "tslib": "2.5.0",