Skip to content

Commit c2e5f9a

Browse files
committed
Merge branch 'nakrovati-fix-karyon-dist'
2 parents 78ee1ab + 5338718 commit c2e5f9a

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

frameworks/keyed/karyon/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8"/>
55
<title>Karyon</title>
66
<link href="/css/currentStyle.css" rel="stylesheet"/>
7-
<script type="module" src="app.bundle.js"></script>
7+
<script type="module" src="dist/app.js"></script>
88
</head>
99
<body></body>
1010
</html>

frameworks/keyed/karyon/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"esbuild": "0.18.10"
1414
},
1515
"scripts": {
16-
"build-prod": "esbuild app.js --bundle --minify --outfile=app.bundle.js"
16+
"build-dev":"esbuild src/app.js --outfile=dist/app.js --bundle --watch",
17+
"build-prod": "esbuild src/app.js --outfile=dist/app.js --bundle --minify"
1718
}
1819
}
File renamed without changes.

zip.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ function addFrameworksToZip(keyedType, frameworkDir, frameworkName) {
9595
`${frameworkDir}/src/bundle.js`,
9696
`${zipFrameworkPath}/src`
9797
);
98-
} else if (frameworkName === "karyon") {
99-
addLocalFileIfExists(`${frameworkDir}/app.bundle.js`, zipFrameworkPath);
10098
} else {
10199
addLocalFolderIfExists(
102100
`${frameworkDir}/output`,

0 commit comments

Comments
 (0)