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