Skip to content

Commit 204feb5

Browse files
committed
Fix example app with & without state,htm,signal
1 parent cc2fcc6 commit 204feb5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ async function makeUi() {
102102
entryPoints: [
103103
path.join(srcPath, 'ui.js'),
104104
path.join(srcPath, 'ui.css'),
105-
path.join(__dirname, 'node_modules/prismjs/themes/prism-funky.css')
105+
path.join(__dirname, 'node_modules/prismjs/themes/prism-funky.css'),
106106
],
107107
bundle: true,
108108
minify: true,

src/bundler.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function wasmJsResolver() {
3131
// Function sends back the code, sample usage code and stats
3232
export async function buildBundle(requestedImports, format) {
3333
const { bundleSource, bundleComments, usage } = getBundleSource(requestedImports, format)
34+
console.log('BUNDLE SOURCE', bundleSource)
3435
await esbuildInitPromise
3536
const params = {
3637
stdin: {
@@ -87,7 +88,7 @@ function getBundleSource(requestedImports, format) {
8788
}
8889
}
8990
let usageByFormat = ''
90-
const withSignals = requestedImports['@preact/signals'] ? true : false
91+
const withSignals = requestedImports['@preact/signals'] && requestedImports['@preact/signals'].includes('signal')
9192
const withUseState = requestedImports['preact/hooks'] && requestedImports['preact/hooks'].includes('useState')
9293
if (format === 'esm') {
9394
bundleSource += `export { ${bundleExports.join(', ')} };\n`
@@ -160,13 +161,12 @@ function getAppUsageWithHtm(withSignals, withUseState,) {
160161
]
161162
}
162163
return [
163-
' const html = htm.bind(h)',
164164
'',
165165
' function App(props) {',
166166
' return html`<h1>Hello ${props.name}!</h1>`',
167167
' }',
168168
'',
169-
' render(html`<${App} name="World" />`, document.querySelector(\'.root\'))',
169+
' render(html`<${App} name="World" />`, document.querySelector(\'#root\'))',
170170
]
171171

172172
}
@@ -176,7 +176,7 @@ function getAppUsageWithoutHtm() {
176176
' function App(props) {',
177177
' return h(\'h1\', null, `Hello ${props.name}!`)',
178178
' }',
179-
' render(App({ name: \'World\' }), document.querySelector(\'.root\'))',
179+
' render(App({ name: \'World\' }), document.querySelector(\'#root\'))',
180180
]
181181
}
182182

0 commit comments

Comments
 (0)