@charcoal-ui/tailwind-diff 4.2.1 → 4.3.0-beta.1

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.
@@ -1 +1 @@
1
- {"version":3,"file":"dump.d.ts","sourceRoot":"","sources":["../../src/commands/dump.ts"],"names":[],"mappings":"AAYA,MAAM,WAAW,UAAU;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,wBAAsB,IAAI,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,UAAU,iBA4BxD"}
1
+ {"version":3,"file":"dump.d.ts","sourceRoot":"","sources":["../../src/commands/dump.ts"],"names":[],"mappings":"AAYA,MAAM,WAAW,UAAU;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,wBAAsB,IAAI,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,UAAU,iBA2BxD"}
@@ -18,7 +18,6 @@ async function dump({ output, config }) {
18
18
  const postcss = (0, import_from_1.default)(targetDir, 'postcss');
19
19
  const tailwindcss = (0, import_from_1.default)(targetDir, 'tailwindcss');
20
20
  const tailwindConfig = import_from_1.default.silent(targetDir, config != null ? config : 'tailwind.config.js');
21
- // @ts-expect-error FIXME: update tailwind-diff to use native types?
22
21
  const result = await postcss([tailwindcss(tailwindConfig)]).process(sourceCSS, {
23
22
  from: undefined,
24
23
  to: undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@charcoal-ui/tailwind-diff",
3
- "version": "4.2.1",
3
+ "version": "4.3.0-beta.1",
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": "9a017d7e402dfcf371a5ca9a2b61bcd095467d89"
28
+ "gitHead": "534223f15a5711138d9197945cadddd29dd8ad89"
29
29
  }
@@ -29,7 +29,6 @@ export async function dump({ output, config }: DumpConfig) {
29
29
  targetDir,
30
30
  config != null ? config : 'tailwind.config.js'
31
31
  ) as TailwindConfig
32
- // @ts-expect-error FIXME: update tailwind-diff to use native types?
33
32
  const result = await postcss([tailwindcss(tailwindConfig)]).process(
34
33
  sourceCSS,
35
34
  {