Skip to content

The v2.0.0 release breaks the ability to run v1.0.0 #638

@dumindu

Description

@dumindu

I used following structure for an admin dashboard UI app with a Golang API Source code

.
├── @globals
│   ├── containers.css
│   ├── reset.css
│   └── theme.css
│
├── @components
│   ├── button.css
│   ├── card.css
│   │
│   └── dashboard.css
│
├── index.html
├── site.yaml
│
├── Dockerfile
├── img
│   └── icon
│
├── bootstrap.js
├── controllers
│   ├── auth.js
│   ├── router.js
│   └── dashboard.js
│
├── model
│   ├── api.js
│   ├── auth.js
│   └── index.js
│
└── view
    ├── layout
    │   ├── app.dhtml
    │   ├── details.dhtml
    │   ├── head.dhtml
    │   └── main.dhtml
    └── screens
        ├── login.dhtml
        ├── signup.dhtml
        └── dashboard.dhtml

I've checked the new sample apps full/spa and tweaked but always get bootstrap.js not found (with //bootstrap.js)

My app was worked perfectly with RCv1.0.0 but with the v2.0.0 the whole projects is unable to run.

Even with following Dockerfile, I've got "'nuedoc' not found in module" error.

FROM oven/bun:1

WORKDIR /app

RUN bun install --global nuekit@1.0.0-RC.4

COPY . .

EXPOSE 8081

CMD ["sh", "-c", "nue build -p && nue serve -p"]
ui-1       | 1 | })
ui-1       | 2 | {
ui-1       |     ^
ui-1       | SyntaxError: Export named 'nuedoc' not found in module '/root/.bun/install/global/node_modules/nuemark/index.js'.
ui-1       |       at requestImportModule (2:1)

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions