(str: string, options?: BundleOptions)
| 123 | } |
| 124 | |
| 125 | append(str: string, options?: BundleOptions): this { |
| 126 | this.addSource({ |
| 127 | content: new MagicString(str), |
| 128 | separator: (options && options.separator) || '', |
| 129 | }) |
| 130 | |
| 131 | return this |
| 132 | } |
| 133 | |
| 134 | clone(): this { |
| 135 | const bundle = new Bundle({ |