@utoo/pack-shared 1.4.0-alpha.2 → 1.4.0-alpha.3

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/cjs/config.d.ts CHANGED
@@ -317,11 +317,6 @@ export interface BundleOptions {
317
317
  * The build id.
318
318
  */
319
319
  buildId?: string;
320
- /**
321
- * Whether to enable default utoopack tracing logs.
322
- * Defaults to true.
323
- */
324
- tracing?: boolean;
325
320
  /**
326
321
  * Absolute path for `@utoo/pack`.
327
322
  */
@@ -332,7 +327,7 @@ export interface BundleOptions {
332
327
  * Bundler options (entry, output, define, ...) at top level,
333
328
  * plus optional CLI/runtime options (processEnv, watch, dev, ...).
334
329
  */
335
- export type UserConfig = ConfigComplete & Partial<Pick<BundleOptions, "processEnv" | "watch" | "dev" | "buildId" | "tracing" | "packPath">> & {
330
+ export type UserConfig = ConfigComplete & Partial<Pick<BundleOptions, "processEnv" | "watch" | "dev" | "buildId" | "packPath">> & {
336
331
  rootPath?: string;
337
332
  projectPath?: string;
338
333
  };
package/esm/config.d.ts CHANGED
@@ -317,11 +317,6 @@ export interface BundleOptions {
317
317
  * The build id.
318
318
  */
319
319
  buildId?: string;
320
- /**
321
- * Whether to enable default utoopack tracing logs.
322
- * Defaults to true.
323
- */
324
- tracing?: boolean;
325
320
  /**
326
321
  * Absolute path for `@utoo/pack`.
327
322
  */
@@ -332,7 +327,7 @@ export interface BundleOptions {
332
327
  * Bundler options (entry, output, define, ...) at top level,
333
328
  * plus optional CLI/runtime options (processEnv, watch, dev, ...).
334
329
  */
335
- export type UserConfig = ConfigComplete & Partial<Pick<BundleOptions, "processEnv" | "watch" | "dev" | "buildId" | "tracing" | "packPath">> & {
330
+ export type UserConfig = ConfigComplete & Partial<Pick<BundleOptions, "processEnv" | "watch" | "dev" | "buildId" | "packPath">> & {
336
331
  rootPath?: string;
337
332
  projectPath?: string;
338
333
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack-shared",
3
- "version": "1.4.0-alpha.2",
3
+ "version": "1.4.0-alpha.3",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "types": "esm/index.d.ts",