@rsbuild/core 2.1.6 → 2.1.7

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.
@@ -229,7 +229,7 @@ declare namespace postcss {
229
229
  export interface Parser<RootNode = Document | Root> {
230
230
  (
231
231
  css: { toString(): string } | string,
232
- opts?: Pick<ProcessOptions, 'document' | 'from' | 'map'>
232
+ opts?: Pick<ProcessOptions, 'document' | 'from' | 'map' | 'unsafeMap'>
233
233
  ): RootNode
234
234
  }
235
235
 
@@ -354,6 +354,9 @@ declare namespace postcss {
354
354
 
355
355
  /**
356
356
  * Disable source map file protections.
357
+ *
358
+ * By default source map is limited only for `.map` files
359
+ * in the `from` folder.
357
360
  */
358
361
  unsafeMap?: boolean
359
362
  }
@@ -1 +1 @@
1
- {"name":"postcss","author":"Andrey Sitnik <andrey@sitnik.es>","version":"8.5.17","funding":[{"type":"opencollective","url":"https://opencollective.com/postcss/"},{"type":"tidelift","url":"https://tidelift.com/funding/github/npm/postcss"},{"type":"github","url":"https://github.com/sponsors/ai"}],"license":"MIT","types":"./lib/postcss.d.ts","type":"commonjs"}
1
+ {"name":"postcss","author":"Andrey Sitnik <andrey@sitnik.es>","version":"8.5.19","funding":[{"type":"opencollective","url":"https://opencollective.com/postcss/"},{"type":"tidelift","url":"https://tidelift.com/funding/github/npm/postcss"},{"type":"github","url":"https://github.com/sponsors/ai"}],"license":"MIT","types":"./lib/postcss.d.ts","type":"commonjs"}
@@ -1,15 +1,15 @@
1
1
  (() => {
2
2
  "use strict";
3
3
  var __webpack_modules__ = {
4
- 254: (module, __unused_webpack_exports, __nccwpck_require__) => {
5
- module.exports = __nccwpck_require__(220)["default"];
4
+ 86: (module, __unused_webpack_exports, __nccwpck_require__) => {
5
+ module.exports = __nccwpck_require__(116)["default"];
6
6
  },
7
- 220: (__unused_webpack_module, exports, __nccwpck_require__) => {
7
+ 116: (__unused_webpack_module, exports, __nccwpck_require__) => {
8
8
  var __webpack_unused_export__;
9
9
  __webpack_unused_export__ = { value: true };
10
10
  exports["default"] = loader;
11
11
  var _nodePath = _interopRequireDefault(__nccwpck_require__(760));
12
- var _utils = __nccwpck_require__(501);
12
+ var _utils = __nccwpck_require__(205);
13
13
  function _interopRequireDefault(e) {
14
14
  return e && e.__esModule ? e : { default: e };
15
15
  }
@@ -179,7 +179,7 @@
179
179
  callback(null, result.css, map, { ast });
180
180
  }
181
181
  },
182
- 501: (module, exports, __nccwpck_require__) => {
182
+ 205: (module, exports, __nccwpck_require__) => {
183
183
  module = __nccwpck_require__.nmd(module);
184
184
  Object.defineProperty(exports, "__esModule", { value: true });
185
185
  exports.exec = exec;
@@ -716,6 +716,6 @@
716
716
  })();
717
717
  if (typeof __nccwpck_require__ !== "undefined")
718
718
  __nccwpck_require__.ab = __dirname + "/";
719
- var __webpack_exports__ = __nccwpck_require__(254);
719
+ var __webpack_exports__ = __nccwpck_require__(86);
720
720
  module.exports = __webpack_exports__;
721
721
  })();
@@ -74,6 +74,13 @@ interface Options {
74
74
  * @default globalThis.console
75
75
  */
76
76
  console?: Pick<Console, 'log' | 'warn' | 'error'>;
77
+ /**
78
+ * Aligns continuation lines of multi-line messages to the first line's
79
+ * content column (label + prefix). Error object stacks keep their original
80
+ * top-aligned formatting.
81
+ * @default false
82
+ */
83
+ alignMultiline?: boolean;
77
84
  }
78
85
  type LogMethods = keyof typeof LOG_TYPES;
79
86
  type Logger = Record<LogMethods, LogFunction> & {
@@ -1 +1 @@
1
- {"name":"rslog","version":"2.2.0","license":"MIT","types":"index.d.ts","type":"module"}
1
+ {"name":"rslog","version":"2.3.0","license":"MIT","types":"index.d.ts","type":"module"}