Skip to content

Commit

Permalink
Change umd from kebab case to pascal case
Browse files Browse the repository at this point in the history
  • Loading branch information
rynobax committed May 10, 2020
1 parent cb45a97 commit 99cde28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default [
output: {
file: "build/generate-umd.js",
format: "umd",
name: "ts-graphql-gen",
name: "TsGraphqlGen",
},
plugins: [
babel({ babelHelpers: "bundled", extensions }),
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>ts-graphql-gen Demo</title>
<script type="module" src="https://unpkg.com/ts-graphql-gen@0.0.4-0/build/generate-umd.js"></script>
<script type="module" src="https://unpkg.com/ts-graphql-gen/build/generate-umd.js"></script>
<script type="module" defer>
const { generateTypesString } = window;
import { h, Component, render } from "https://unpkg.com/preact?module";
Expand Down

0 comments on commit 99cde28

Please sign in to comment.