Skip to content

Commit

Permalink
trying concurrently-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
remorses committed Dec 29, 2024
1 parent d243ebb commit 4998c85
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.4.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"commit": true,
"linked": [],
"access": "public",
"baseBranch": "main",
"githubRelease": true,
"updateInternalDependencies": "patch",
"ignore": ["nextjs-app", "remix-app"]
}
3 changes: 2 additions & 1 deletion nextjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nextjs-app",
"private": true,
"scripts": {
"dev": "next dev --port 5543",
"dev": "concurrently-ui 'next dev --port 5543' 'pnpm unframer'",
"gen": "pnpm --filter unframer build && pnpm unframer",
"build": "pnpm --filter unframer build && next build",
"start": "next start",
Expand All @@ -13,6 +13,7 @@
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.14",
"concurrently-ui": "^1.2.0",
"next": "15.0.4",
"postcss": "8.4.24",
"react": "19.0.0",
Expand Down
2 changes: 2 additions & 0 deletions nextjs-app/src/pages/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ import '@/framer/tokens.css'
import Page from '../app/page'

export default Page


79 changes: 78 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions unframer/src/exporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export async function bundle({
const buildResult = await build({
absWorkingDir: out,
entryPoints: Object.keys(components).map((name) => {
const url = components[name]
validateUrl(url)
// const url = components[name]
// validateUrl(url)

return {
in: `virtual:${name}`,
Expand Down

0 comments on commit 4998c85

Please sign in to comment.