tailwindcss-patch 2.0.5-alpha.4 → 2.1.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.
package/dist/cli.cjs CHANGED
@@ -39,7 +39,7 @@ cli.command("extract").action(async () => {
39
39
  if (config$1) {
40
40
  const twPatcher = new index.TailwindcssPatcher();
41
41
  const p = await twPatcher.extract(config$1.patch);
42
- console.log("\u2728 tailwindcss-patch extract success! file path:\n" + p);
42
+ console.log("\u2728 tailwindcss-patch extract success! file path: " + p);
43
43
  }
44
44
  });
45
45
  cli.help();
package/dist/cli.mjs CHANGED
@@ -33,7 +33,7 @@ cli.command("extract").action(async () => {
33
33
  if (config) {
34
34
  const twPatcher = new TailwindcssPatcher();
35
35
  const p = await twPatcher.extract(config.patch);
36
- console.log("\u2728 tailwindcss-patch extract success! file path:\n" + p);
36
+ console.log("\u2728 tailwindcss-patch extract success! file path: " + p);
37
37
  }
38
38
  });
39
39
  cli.help();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss-patch",
3
- "version": "2.0.5-alpha.4",
3
+ "version": "2.1.0",
4
4
  "description": "patch tailwindcss for exposing context and extract classes",
5
5
  "main": "./dist/index.cjs",
6
6
  "types": "./dist/index.d.ts",
@@ -51,7 +51,7 @@
51
51
  "postcss": "^8.4.27",
52
52
  "resolve": "^1.22.4",
53
53
  "semver": "^7.5.4",
54
- "@tailwindcss-mangle/config": "^2.0.4"
54
+ "@tailwindcss-mangle/config": "^2.1.0"
55
55
  },
56
56
  "homepage": "https://github.com/sonofmagic/tailwindcss-mangle",
57
57
  "repository": {