@veryfront/ext-css-tailwind 0.1.1189 → 0.1.1191

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.
Files changed (3) hide show
  1. package/README.md +7 -13
  2. package/esm/deno.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -1,25 +1,19 @@
1
1
  # @veryfront/ext-css-tailwind
2
2
 
3
- > **Category:** Build | **Contract:** `CSSProcessor` | **Explicit**
3
+ > **Category:** Build | **Contract:** `CSSProcessor` | **Default**
4
4
 
5
5
  Provides Tailwind CSS v4 compilation for Veryfront. The extension owns the
6
6
  pinned compiler, local base stylesheet, plugin policy, plugin module loading,
7
7
  and every third-party import; framework core sees only `CSSProcessor`.
8
8
 
9
- ## Registration
9
+ ## Activation
10
10
 
11
- Install and compose the extension explicitly:
11
+ The standard `veryfront` npm/CLI distribution installs and auto-activates this
12
+ extension. Source and custom service distributions must make the package
13
+ available alongside `veryfront`; the builtin composition then activates it.
14
+ Projects do not need a Tailwind entry in `veryfront.config.ts`.
12
15
 
13
- ```ts
14
- import extTailwind from "@veryfront/ext-css-tailwind";
15
-
16
- export default defineConfig({
17
- extensions: [extTailwind()],
18
- });
19
- ```
20
-
21
- Core never discovers or auto-registers this provider. Production pipelines
22
- that request CSS minification must also explicitly compose a
16
+ Production pipelines that request CSS minification must still explicitly compose a
23
17
  `CSSOptimizationEngine` provider such as `@veryfront/ext-css-lightning`.
24
18
  If either requested provider is absent, compilation fails instead of returning
25
19
  empty or regex-rewritten CSS.
package/esm/deno.js CHANGED
@@ -4,7 +4,7 @@ export default {
4
4
  "exports": "./src/index.ts",
5
5
  "veryfront": {
6
6
  "extension": true,
7
- "activation": "explicit",
7
+ "activation": "auto",
8
8
  "contracts": {
9
9
  "provides": ["CSSProcessor"]
10
10
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veryfront/ext-css-tailwind",
3
- "version": "0.1.1189",
3
+ "version": "0.1.1191",
4
4
  "description": "Veryfront first-party extension package for ext-css-tailwind",
5
5
  "keywords": [
6
6
  "veryfront",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "veryfront": {
36
36
  "extension": true,
37
- "activation": "explicit",
37
+ "activation": "auto",
38
38
  "contracts": {
39
39
  "provides": [
40
40
  "CSSProcessor"
@@ -58,7 +58,7 @@
58
58
  "tailwindcss-animate": "1.0.7"
59
59
  },
60
60
  "peerDependencies": {
61
- "veryfront": "^0.1.1189"
61
+ "veryfront": "^0.1.1191"
62
62
  },
63
63
  "type": "module",
64
64
  "types": "./esm/src/index.d.ts",