@roots/bud-compiler 2023.12.12-7 → 2023.12.14-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/README.md +3 -0
- package/lib/service/index.js +3 -3
- package/package.json +6 -6
- package/src/service/index.tsx +3 -3
package/README.md
CHANGED
@@ -69,6 +69,9 @@ 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>
|
72
75
|
<a href="https://www.freave.com/">
|
73
76
|
<img src="https://cdn.roots.io/app/uploads/freave.svg" alt="Freave" width="200" height="150"/>
|
74
77
|
</a>
|
package/lib/service/index.js
CHANGED
@@ -7,9 +7,9 @@ import { Display as DisplayError } from '@roots/bud-dashboard/components/error';
|
|
7
7
|
import { Service } from '@roots/bud-framework/service';
|
8
8
|
import { bind } from '@roots/bud-support/decorators/bind';
|
9
9
|
import { BudError, CompilerError } from '@roots/bud-support/errors';
|
10
|
-
import isNull from '@roots/bud-support/
|
11
|
-
import isNumber from '@roots/bud-support/
|
12
|
-
import isString from '@roots/bud-support/
|
10
|
+
import isNull from '@roots/bud-support/isNull';
|
11
|
+
import isNumber from '@roots/bud-support/isNumber';
|
12
|
+
import isString from '@roots/bud-support/isString';
|
13
13
|
import stripAnsi from '@roots/bud-support/strip-ansi';
|
14
14
|
/**
|
15
15
|
* {@link BudCompiler} implementation
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@roots/bud-compiler",
|
3
|
-
"version": "2023.12.
|
3
|
+
"version": "2023.12.14-7",
|
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": "2023.12.
|
68
|
+
"@roots/bud-api": "2023.12.14-7",
|
69
69
|
"@skypack/package-check": "0.2.2",
|
70
70
|
"@types/node": "20.10.4",
|
71
|
-
"@types/react": "18.2.
|
71
|
+
"@types/react": "18.2.43"
|
72
72
|
},
|
73
73
|
"dependencies": {
|
74
|
-
"@roots/bud-dashboard": "2023.12.
|
75
|
-
"@roots/bud-framework": "2023.12.
|
76
|
-
"@roots/bud-support": "2023.12.
|
74
|
+
"@roots/bud-dashboard": "2023.12.14-7",
|
75
|
+
"@roots/bud-framework": "2023.12.14-7",
|
76
|
+
"@roots/bud-support": "2023.12.14-7",
|
77
77
|
"react": "18.2.0",
|
78
78
|
"tslib": "2.6.2"
|
79
79
|
},
|
package/src/service/index.tsx
CHANGED
@@ -21,9 +21,9 @@ import {Display as DisplayError} from '@roots/bud-dashboard/components/error'
|
|
21
21
|
import {Service} from '@roots/bud-framework/service'
|
22
22
|
import {bind} from '@roots/bud-support/decorators/bind'
|
23
23
|
import {BudError, CompilerError} from '@roots/bud-support/errors'
|
24
|
-
import isNull from '@roots/bud-support/
|
25
|
-
import isNumber from '@roots/bud-support/
|
26
|
-
import isString from '@roots/bud-support/
|
24
|
+
import isNull from '@roots/bud-support/isNull'
|
25
|
+
import isNumber from '@roots/bud-support/isNumber'
|
26
|
+
import isString from '@roots/bud-support/isString'
|
27
27
|
import stripAnsi from '@roots/bud-support/strip-ansi'
|
28
28
|
|
29
29
|
/**
|