Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

language: "en-US"
early_access: false

reviews:
profile: "chill"
request_changes_workflow: false
high_level_summary: true
poem: false
review_status: true
commit_status: false
collapse_walkthrough: true

auto_review:
enabled: true
drafts: false
auto_incremental_review: true
base_branches:
- "main"
- "dev"
ignore_title_keywords:
- "WIP"
- "DO NOT MERGE"

path_filters:
- "!**/dist/**"
- "!**/.app/**"
- "!**/.output/**"
- "!**/coverage/**"
- "!**/node_modules/**"
- "!pnpm-lock.yaml"

path_instructions:
- path: "packages/runable/src/**"
instructions: |
Focus on correctness, TypeScript type safety, Vue 3 and SSR behavior,
server/client boundaries, error handling, and backward compatibility of
public APIs and generated types. Check behavior across the supported
server adapters. Flag missing regression tests for behavioral fixes.

- path: "packages/cli/**"
instructions: |
Check that CLI behavior and generated starters work outside this
workspace with supported package managers. Do not suggest commands that
the CLI does not implement. Verify that published files and dependency
declarations are sufficient for clean consumer installations.

- path: "packages/create-syora/**"
instructions: |
Review scaffolding changes for clean-project behavior, correct package
versions, portable file paths, and compatibility with every starter and
supported package manager.

- path: "tests/**"
instructions: |
Prefer behavior-based integration and regression tests using the real
toolchain. Check that new tests would fail before the corresponding fix,
cover important edge cases, and avoid brittle source-text assertions.

- path: "website/content/docs/**"
instructions: |
Check that documented APIs, options, examples, and CLI commands match
the implementation and current starter structure.

- path: ".changeset/**"
instructions: |
Check that release impact and package selection match the change. This
repository is in prerelease mode; follow CONTRIBUTING.md for whether a
patch, minor, or major changeset is appropriate.

chat:
auto_reply: true

knowledge_base:
code_guidelines:
enabled: true
filePatterns:
- "**/AGENTS.md"
- "CONTRIBUTING.md"
7 changes: 7 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @runablejs/cli

## 1.2.1

### Patch Changes

- Updated dependencies [[`bbc38a1`](https://github.com/runablejs/runable/commit/bbc38a1d622d0dac6f96291e06a11353ed537cd1)]:
- runable@1.2.1

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runablejs/cli",
"version": "1.2.0",
"version": "1.2.1",
"private": false,
"license": "MIT",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/create-syora/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# create-runable

## 1.2.1

### Patch Changes

- Updated dependencies []:
- @runablejs/cli@1.2.1

## 1.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-syora/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-runable",
"version": "1.2.0",
"version": "1.2.1",
"description": "Create a Runable project",
"private": false,
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/runable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# runable

## 1.2.1

### Patch Changes

- [#95](https://github.com/runablejs/runable/pull/95) [`bbc38a1`](https://github.com/runablejs/runable/commit/bbc38a1d622d0dac6f96291e06a11353ed537cd1) Thanks [@domutala](https://github.com/domutala)! - Preserve remote CSS imports when building Runable modules instead of resolving their URLs as local files.

## 1.2.0

### Patch Changes
Expand Down
3 changes: 2 additions & 1 deletion packages/runable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "runable",
"version": "1.2.0",
"version": "1.2.1",
"private": false,
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -97,6 +97,7 @@
"magic-string": "catalog:",
"mlly": "catalog:",
"ofetch": "catalog:",
"postcss-import": "catalog:",
"syt": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
Expand Down
4 changes: 3 additions & 1 deletion packages/runable/src/vite/build/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ export async function buildModule() {
unbundle: true,
minify: false,

css: {},
// PostCSS keeps remote `@import` URLs external. Lightning CSS attempts
// to resolve them as local files while bundling.
css: { transformer: "postcss" },

plugins: [
Vue(),
Expand Down
Loading
Loading