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.
package/dist/core/constants.d.ts
CHANGED
|
@@ -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:
|
|
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:
|
|
146
|
+
readonly verbose: false;
|
|
147
147
|
};
|
|
148
148
|
readonly production: {
|
|
149
149
|
readonly atomic: {
|
package/package.json
CHANGED
package/src/core/constants.ts
CHANGED
|
@@ -255,7 +255,7 @@ export const ENVIRONMENT_PRESETS = {
|
|
|
255
255
|
atomic: {
|
|
256
256
|
naming: 'readable' as NamingScheme,
|
|
257
257
|
minify: false,
|
|
258
|
-
verbose:
|
|
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:
|
|
268
|
+
verbose: false
|
|
269
269
|
},
|
|
270
270
|
production: {
|
|
271
271
|
atomic: {
|