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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI for the Uniweb Component Web Platform",
5
5
  "type": "module",
6
6
  "bin": {
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}/dist/styles')
373
+ await import('${foundationImport}/styles')
375
374
  initRuntime(foundation)
376
375
  }
377
376
  }