@justeattakeaway/pie-webc-core 0.24.1 → 0.24.2
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/src/mixins/rtl/rtlMixin.ts +2 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,5 +3,5 @@ transforming...
|
|
|
3
3
|
[32m✓[39m 16 modules transformed.
|
|
4
4
|
rendering chunks...
|
|
5
5
|
computing gzip size...
|
|
6
|
-
[2mdist/[22m[36mindex.js [39m[1m[2m2.69 kB[22m[1m[22m[2m │ gzip: 1.
|
|
7
|
-
[32m✓ built in
|
|
6
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m2.69 kB[22m[1m[22m[2m │ gzip: 1.22 kB[22m
|
|
7
|
+
[32m✓ built in 104ms[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.24.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [Fixed] - Imports to align with new linting rule ([#1622](https://github.com/justeattakeaway/pie/pull/1622)) by [@xander-marjoram](https://github.com/xander-marjoram)
|
|
8
|
+
|
|
9
|
+
[Removed] - Empty lines at the start of some files
|
|
10
|
+
|
|
3
11
|
## 0.24.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import type { GenericConstructor } from '../types/GenericConstructor';
|
|
1
|
+
import { type LitElement, isServer } from 'lit';
|
|
2
|
+
import { type GenericConstructor } from '../types/GenericConstructor';
|
|
4
3
|
|
|
5
4
|
/**
|
|
6
5
|
* An interface representing the structure of RTL related class.
|