uniweb 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +1 -2
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -188,7 +188,6 @@ async function main() {
|
|
|
188
188
|
log(` ${colors.cyan}pnpm install${colors.reset}`)
|
|
189
189
|
|
|
190
190
|
if (templateType === 'workspace') {
|
|
191
|
-
log(` ${colors.cyan}pnpm build:foundation${colors.reset} ${colors.dim}# Build CSS once${colors.reset}`)
|
|
192
191
|
log(` ${colors.cyan}pnpm dev${colors.reset}`)
|
|
193
192
|
} else if (templateType === 'site') {
|
|
194
193
|
log(` ${colors.cyan}pnpm dev${colors.reset}`)
|
|
@@ -371,7 +370,7 @@ async function start() {
|
|
|
371
370
|
})
|
|
372
371
|
} else {
|
|
373
372
|
const foundation = await import('${foundationImport}')
|
|
374
|
-
await import('${foundationImport}/
|
|
373
|
+
await import('${foundationImport}/styles')
|
|
375
374
|
initRuntime(foundation)
|
|
376
375
|
}
|
|
377
376
|
}
|