@charcoal-ui/tailwind-diff 4.2.1 → 4.3.0-beta.0
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,
|
|
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"}
|
package/dist/commands/dump.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "4.3.0-beta.0",
|
|
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": "
|
|
28
|
+
"gitHead": "864fc9a6c8ad391df01c7765ab0dff66842c612d"
|
|
29
29
|
}
|
package/src/commands/dump.ts
CHANGED
|
@@ -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
|
{
|