Skip to content

Commit

Permalink
Update rollup.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftyp authored Sep 20, 2023
1 parent f399130 commit 032d57e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import typescript from "@rollup/plugin-typescript"

import { version } from "./package.json"
const year = new Date().getFullYear()
const banner = `/*!\nTurbo ${version}\nCopyright © ${year} 37signals LLC\n */`
const banner = `/*!\nTurbo ${version}\nCopyright © ${year} 37signals LLC\nCopyright © ${year} Ryan Kahn\n*/`

export default [
{
Expand All @@ -13,12 +13,14 @@ export default [
name: "Turbo",
file: "dist/turbo.es2017-umd.js",
format: "umd",
banner
banner,
sourcemap: !process.env.CI
},
{
file: "dist/turbo.es2017-esm.js",
format: "es",
banner
banner,
sourcemap: !process.env.CI
}
],
plugins: [
Expand Down

0 comments on commit 032d57e

Please sign in to comment.