@charcoal-ui/tailwind-diff 4.0.0-beta.10 → 4.0.0-beta.12

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/dist/defer.js CHANGED
@@ -7,7 +7,7 @@ function createDefer() {
7
7
  defers.push(deferFn);
8
8
  };
9
9
  const dispose = () => {
10
- // eslint-disable-next-line no-constant-condition, @typescript-eslint/no-unnecessary-condition
10
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
11
11
  while (true) {
12
12
  const deferFn = defers.pop();
13
13
  if (deferFn == null) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@charcoal-ui/tailwind-diff",
3
- "version": "4.0.0-beta.10",
3
+ "version": "4.0.0-beta.12",
4
4
  "bin": "bin/tailwind-diff.js",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -25,5 +25,5 @@
25
25
  "url": "https://github.com/pixiv/charcoal.git",
26
26
  "directory": "packages/tailwind-diff"
27
27
  },
28
- "gitHead": "7a57245c2d3113b517d0ca27932910620fb7d3f7"
28
+ "gitHead": "a13c826cdfd6a26f29e635cda926b7f3af37affe"
29
29
  }
package/src/defer.ts CHANGED
@@ -6,7 +6,7 @@ export function createDefer() {
6
6
  }
7
7
 
8
8
  const dispose = () => {
9
- // eslint-disable-next-line no-constant-condition, @typescript-eslint/no-unnecessary-condition
9
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
10
10
  while (true) {
11
11
  const deferFn = defers.pop()
12
12
  if (deferFn == null) {