chaincss 2.1.26 → 2.1.27

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.
@@ -133,7 +133,7 @@ export declare const ENVIRONMENT_PRESETS: {
133
133
  readonly atomic: {
134
134
  readonly naming: NamingScheme;
135
135
  readonly minify: false;
136
- readonly verbose: true;
136
+ readonly verbose: false;
137
137
  readonly cache: true;
138
138
  };
139
139
  readonly output: {
@@ -143,7 +143,7 @@ export declare const ENVIRONMENT_PRESETS: {
143
143
  readonly debug: true;
144
144
  readonly timeline: true;
145
145
  readonly sourceComments: true;
146
- readonly verbose: true;
146
+ readonly verbose: false;
147
147
  };
148
148
  readonly production: {
149
149
  readonly atomic: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chaincss",
3
- "version": "2.1.26",
3
+ "version": "2.1.27",
4
4
  "description": "ChainCSS - The first CSS-in-JS library with true auto-detection mixed mode. Zero runtime by default, dynamic when you need it.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -255,7 +255,7 @@ export const ENVIRONMENT_PRESETS = {
255
255
  atomic: {
256
256
  naming: 'readable' as NamingScheme,
257
257
  minify: false,
258
- verbose: true,
258
+ verbose: false,
259
259
  cache: true
260
260
  },
261
261
  output: {
@@ -265,7 +265,7 @@ export const ENVIRONMENT_PRESETS = {
265
265
  debug: true,
266
266
  timeline: true,
267
267
  sourceComments: true,
268
- verbose: true
268
+ verbose: false
269
269
  },
270
270
  production: {
271
271
  atomic: {