(moduleName: string, version: string)
| 172 | |
| 173 | /** Standard license banner to place at the top of the generated files. */ |
| 174 | export const getBanner = (moduleName: string, version: string) => { |
| 175 | return ` |
| 176 | /** |
| 177 | * @license |
| 178 | * ${moduleName} ${version} |
| 179 | * Copyright Builder.io, Inc. All Rights Reserved. |
| 180 | * Use of this source code is governed by an MIT-style license that can be |
| 181 | * found in the LICENSE file at https://github.com/QwikDev/qwik/blob/main/LICENSE |
| 182 | */ |
| 183 | `.trim(); |
| 184 | }; |
| 185 | |
| 186 | /** |
| 187 | * The JavaScript target we're going for. Reusing a constant just to make sure all the builds are |
no outgoing calls
no test coverage detected
searching dependent graphs…