tailwindcss-patch 9.0.0-alpha.3 → 9.0.0-alpha.4
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/{chunk-D6ICWMM4.mjs → chunk-H2BKL24E.mjs} +2 -2
- package/dist/{chunk-77GHKSKG.js → chunk-HIOIM42J.js} +2 -2
- package/dist/cli.js +3 -3
- package/dist/cli.mjs +1 -1
- package/dist/commands/cli-runtime.js +306 -336
- package/dist/commands/cli-runtime.mjs +240 -270
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
|
@@ -20,7 +20,7 @@ import path from "pathe";
|
|
|
20
20
|
// package.json
|
|
21
21
|
var package_default = {
|
|
22
22
|
name: "tailwindcss-patch",
|
|
23
|
-
version: "9.0.0-alpha.
|
|
23
|
+
version: "9.0.0-alpha.4",
|
|
24
24
|
description: "patch tailwindcss for exposing context and extract classes",
|
|
25
25
|
author: "ice breaker <1324318532@qq.com>",
|
|
26
26
|
license: "MIT",
|
|
@@ -115,7 +115,7 @@ var package_default = {
|
|
|
115
115
|
"@babel/types": "^7.29.0",
|
|
116
116
|
"@tailwindcss-mangle/config": "workspace:*",
|
|
117
117
|
"@tailwindcss/node": "^4.2.1",
|
|
118
|
-
cac: "
|
|
118
|
+
cac: "6.7.14",
|
|
119
119
|
consola: "^3.4.2",
|
|
120
120
|
"fs-extra": "^11.3.4",
|
|
121
121
|
"local-pkg": "^1.1.2",
|
|
@@ -20,7 +20,7 @@ var _pathe = require('pathe'); var _pathe2 = _interopRequireDefault(_pathe);
|
|
|
20
20
|
// package.json
|
|
21
21
|
var package_default = {
|
|
22
22
|
name: "tailwindcss-patch",
|
|
23
|
-
version: "9.0.0-alpha.
|
|
23
|
+
version: "9.0.0-alpha.4",
|
|
24
24
|
description: "patch tailwindcss for exposing context and extract classes",
|
|
25
25
|
author: "ice breaker <1324318532@qq.com>",
|
|
26
26
|
license: "MIT",
|
|
@@ -115,7 +115,7 @@ var package_default = {
|
|
|
115
115
|
"@babel/types": "^7.29.0",
|
|
116
116
|
"@tailwindcss-mangle/config": "workspace:*",
|
|
117
117
|
"@tailwindcss/node": "^4.2.1",
|
|
118
|
-
cac: "
|
|
118
|
+
cac: "6.7.14",
|
|
119
119
|
consola: "^3.4.2",
|
|
120
120
|
"fs-extra": "^11.3.4",
|
|
121
121
|
"local-pkg": "^1.1.2",
|
package/dist/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ var _chunkPMN7HS4Yjs = require('./chunk-PMN7HS4Y.js');
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkHIOIM42Jjs = require('./chunk-HIOIM42J.js');
|
|
8
8
|
require('./chunk-5CWNAWKP.js');
|
|
9
9
|
|
|
10
10
|
// src/cli.bundle.ts
|
|
@@ -16,11 +16,11 @@ async function main() {
|
|
|
16
16
|
await cli.runMatchedCommand();
|
|
17
17
|
}
|
|
18
18
|
main().catch((error) => {
|
|
19
|
-
if (error instanceof
|
|
19
|
+
if (error instanceof _chunkHIOIM42Jjs.ValidateCommandError) {
|
|
20
20
|
_process2.default.exitCode = error.exitCode;
|
|
21
21
|
return;
|
|
22
22
|
}
|
|
23
23
|
const message = error instanceof Error ? error.message : String(error);
|
|
24
|
-
|
|
24
|
+
_chunkHIOIM42Jjs.logger_default.error(message);
|
|
25
25
|
_process2.default.exitCode = 1;
|
|
26
26
|
});
|