Skip to content

Rewrite create CLI in TypeScript; drop legacy packages; modernize tooling#231

Merged
DylanPiercey merged 1 commit into
mainfrom
dpiercey-ws-cli-create-n9kgdk
Jul 22, 2026
Merged

Rewrite create CLI in TypeScript; drop legacy packages; modernize tooling#231
DylanPiercey merged 1 commit into
mainfrom
dpiercey-ws-cli-create-n9kgdk

Conversation

@DylanPiercey

Copy link
Copy Markdown
Contributor

Trims the repo down to just the Marko project scaffolder and modernizes everything around it. The full previous package set (serve/build/migrate/prettyprint/test + old lerna/yarn tooling) is preserved on the new legacy branch.

Repo / tooling

  • Drop the serve, build, migrate, prettyprint, and test packages — only create (+ the create-marko alias) remain.
  • Switch from yarn + lerna to a pnpm workspace with changesets.
  • Modern CI (pnpm, current Node matrix, changesets release), eslint flat config, and prettier 3, matching the marko-js/prettier setup.

@marko/create rewrite

  • Rewritten in TypeScript (rolldown build, vitest), CLI-only — no programmatic API.
  • Modern deps: @clack/prompts, giget, and native fetch replace enquirer/ora/chalk, degit, and got. Default branch is now resolved automatically (fixes master-based templates).
  • Agent/CI-friendly (supersedes feat: support non-interactive use for CI and AI agents #227): --yes plus CI/agent/no-TTY detection fall back to defaults or a clear non-zero error instead of hanging on prompts.
  • A non-zero install exit (e.g. pnpm's ignored build scripts) no longer aborts the scaffold — the original pnpm create marko bug.

The CLI flags are unchanged.

Remove the serve/build/migrate/prettyprint/test packages (preserved on the
`legacy` branch) so this repo is just the Marko project scaffolder. Switch the
workspace to pnpm + changesets, and modernize CI (pnpm, current Node, changesets
release) and lint/format (eslint flat config, prettier 3).

Rewrite `@marko/create` in TypeScript (rolldown build, vitest) with a modern
dependency set: @clack/prompts, giget, and native fetch replace
enquirer/ora/chalk, degit, and got. The CLI signature is preserved and the tool
is now agent/CI-friendly — `--yes` plus CI/agent/no-TTY detection fall back to
defaults or a clear non-zero error instead of hanging on prompts. A non-zero
install exit (e.g. pnpm's ignored build scripts) no longer aborts the scaffold.
@coderabbitai

coderabbitai Bot commented Jul 22, 2026

Copy link
Copy Markdown

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 43 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: be4097d1-b229-47d6-9e40-91288db70ff6

📥 Commits

Reviewing files that changed from the base of the PR and between c66d735 and 52d5da3.

⛔ Files ignored due to path filters (6)
  • packages/build/src/files/dir.png is excluded by !**/*.png and included by **
  • packages/build/src/files/file.png is excluded by !**/*.png and included by **
  • packages/build/src/files/parent-dir.png is excluded by !**/*.png and included by **
  • packages/serve/test/fixtures/image/target/logo.png is excluded by !**/*.png and included by **
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml and included by **
  • yarn.lock is excluded by !**/yarn.lock, !**/*.lock and included by **
📒 Files selected for processing (475)
  • .changeset/README.md
  • .changeset/config.json
  • .changeset/modernize-create.md
  • .eslintignore
  • .eslintrc.json
  • .github/workflows/ci.yml
  • .gitignore
  • .husky/commit-msg
  • .husky/pre-commit
  • .lintstagedrc
  • .lintstagedrc.json
  • .nycrc
  • .prettierignore
  • .prettierrc
  • .prettierrc.json
  • README.md
  • babel.config.js
  • commitlint.config.js
  • eslint.config.mjs
  • lerna.json
  • package.json
  • packages/build/CHANGELOG.md
  • packages/build/README.md
  • packages/build/package.json
  • packages/build/src/bin.js
  • packages/build/src/cli.js
  • packages/build/src/components/marko.json
  • packages/build/src/components/src-attributes-transformer.js
  • packages/build/src/files/dir-index.marko
  • packages/build/src/files/middleware.js
  • packages/build/src/files/noop.js
  • packages/build/src/files/server.js
  • packages/build/src/index.js
  • packages/build/src/marko-compiler.js
  • packages/build/src/util.js
  • packages/create-alias/bin.mjs
  • packages/create-alias/package.json
  • packages/create-alias/src/index.js
  • packages/create/README.md
  • packages/create/package.json
  • packages/create/rolldown.config.mjs
  • packages/create/src/__tests__/parse.test.ts
  • packages/create/src/bin.js
  • packages/create/src/bin.ts
  • packages/create/src/cli.js
  • packages/create/src/cli.ts
  • packages/create/src/create.ts
  • packages/create/src/env.ts
  • packages/create/src/exec.js
  • packages/create/src/exec.ts
  • packages/create/src/git.ts
  • packages/create/src/index.js
  • packages/create/src/init-git-repo.js
  • packages/create/src/pkg.ts
  • packages/create/tsconfig.json
  • packages/migrate/CHANGELOG.md
  • packages/migrate/README.md
  • packages/migrate/package.json
  • packages/migrate/src/bin.js
  • packages/migrate/src/cli.js
  • packages/migrate/src/index.js
  • packages/migrate/src/util/default-migrations/component-file.js
  • packages/migrate/src/util/default-migrations/index.js
  • packages/migrate/src/util/default-migrations/update-paths.js
  • packages/migrate/src/util/get-files.js
  • packages/migrate/src/util/migrate-helper.js
  • packages/migrate/test/fixtures/multiple-templates/a.marko
  • packages/migrate/test/fixtures/multiple-templates/b.marko
  • packages/migrate/test/fixtures/multiple-templates/components/c.marko
  • packages/migrate/test/fixtures/multiple-templates/snapshot-expected.marko
  • packages/migrate/test/fixtures/single-template-rename/marko.json
  • packages/migrate/test/fixtures/single-template-rename/migrator.js
  • packages/migrate/test/fixtures/single-template-rename/snapshot-expected.marko
  • packages/migrate/test/fixtures/single-template-rename/template.marko
  • packages/migrate/test/fixtures/single-template/index.marko
  • packages/migrate/test/fixtures/single-template/snapshot-expected.marko
  • packages/migrate/test/fixtures/single-widget-rename-and-dependent-paths/marko.json
  • packages/migrate/test/fixtures/single-widget-rename-and-dependent-paths/migrator.js
  • packages/migrate/test/fixtures/single-widget-rename-and-dependent-paths/snapshot-expected.marko
  • packages/migrate/test/fixtures/single-widget-rename-and-dependent-paths/template.marko
  • packages/migrate/test/index.test.js
  • packages/prettyprint/CHANGELOG.md
  • packages/prettyprint/README.md
  • packages/prettyprint/package.json
  • packages/prettyprint/src/PrintContext.js
  • packages/prettyprint/src/bin.js
  • packages/prettyprint/src/cli.js
  • packages/prettyprint/src/constants.js
  • packages/prettyprint/src/formatting-tags.js
  • packages/prettyprint/src/index.js
  • packages/prettyprint/src/prettyPrintAST.js
  • packages/prettyprint/src/prettyPrintFile.js
  • packages/prettyprint/src/prettyPrintSource.js
  • packages/prettyprint/src/printDeclaration.js
  • packages/prettyprint/src/printDocumentType.js
  • packages/prettyprint/src/printHtmlComment.js
  • packages/prettyprint/src/printHtmlElement.js
  • packages/prettyprint/src/printNode.js
  • packages/prettyprint/src/printNodes.js
  • packages/prettyprint/src/printScriptlet.js
  • packages/prettyprint/src/printText.js
  • packages/prettyprint/src/printers.js
  • packages/prettyprint/src/util/Writer.js
  • packages/prettyprint/src/util/formatArgument.js
  • packages/prettyprint/src/util/formatJS.js
  • packages/prettyprint/src/util/formatParams.js
  • packages/prettyprint/src/util/formatStyles.js
  • packages/prettyprint/src/util/getBodyText.js
  • packages/prettyprint/src/util/getTextValue.js
  • packages/prettyprint/src/util/getUnenclosedAsString.js
  • packages/prettyprint/src/util/hasLineBreaks.js
  • packages/prettyprint/src/util/hasUnenclosedNewlines.js
  • packages/prettyprint/src/util/hasUnenclosedWhitespace.js
  • packages/prettyprint/src/util/indent.js
  • packages/prettyprint/src/util/isInlineComment.js
  • packages/prettyprint/src/util/package.json
  • packages/prettyprint/src/util/readConfigFile.js
  • packages/prettyprint/src/util/readConfigFile[browser].js
  • packages/prettyprint/src/util/requireMarkoFile.js
  • packages/prettyprint/src/util/requireMarkoFile[browser].marko
  • packages/prettyprint/src/util/toCode.js
  • packages/prettyprint/src/util/trim.js
  • packages/prettyprint/test/fixtures/argument-attr/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/argument-attr/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/argument-attr/template.marko
  • packages/prettyprint/test/fixtures/argument-tag/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/argument-tag/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/argument-tag/template.marko
  • packages/prettyprint/test/fixtures/attr-array-literal/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-array-literal/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-array-literal/template.marko
  • packages/prettyprint/test/fixtures/attr-arrow-function-expression/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-arrow-function-expression/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-arrow-function-expression/template.marko
  • packages/prettyprint/test/fixtures/attr-assignment-expression/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-assignment-expression/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-assignment-expression/template.marko
  • packages/prettyprint/test/fixtures/attr-binary-expression/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-binary-expression/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-binary-expression/template.marko
  • packages/prettyprint/test/fixtures/attr-conditional-expression/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-conditional-expression/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-conditional-expression/template.marko
  • packages/prettyprint/test/fixtures/attr-function-expression/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-function-expression/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-function-expression/template.marko
  • packages/prettyprint/test/fixtures/attr-logical-expression/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-logical-expression/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-logical-expression/template.marko
  • packages/prettyprint/test/fixtures/attr-new/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-new/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-new/template.marko
  • packages/prettyprint/test/fixtures/attr-newline-escaped/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-newline-escaped/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-newline-escaped/template.marko
  • packages/prettyprint/test/fixtures/attr-newline-nested/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-newline-nested/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-newline-nested/template.marko
  • packages/prettyprint/test/fixtures/attr-newline/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-newline/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-newline/template.marko
  • packages/prettyprint/test/fixtures/attr-object-literal/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-object-literal/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-object-literal/template.marko
  • packages/prettyprint/test/fixtures/attr-regex-literal/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-regex-literal/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-regex-literal/template.marko
  • packages/prettyprint/test/fixtures/attr-spread/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-spread/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-spread/template.marko
  • packages/prettyprint/test/fixtures/attr-template-literal/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-template-literal/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-template-literal/template.marko
  • packages/prettyprint/test/fixtures/attr-with-newlines/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attr-with-newlines/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attr-with-newlines/template.marko
  • packages/prettyprint/test/fixtures/attrs-multiline-nested/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attrs-multiline-nested/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attrs-multiline-nested/template.marko
  • packages/prettyprint/test/fixtures/attrs-multiline/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attrs-multiline/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attrs-multiline/template.marko
  • packages/prettyprint/test/fixtures/attrs-over-80-chars/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/attrs-over-80-chars/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/attrs-over-80-chars/template.marko
  • packages/prettyprint/test/fixtures/avoid-whitespace/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/avoid-whitespace/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/avoid-whitespace/template.marko
  • packages/prettyprint/test/fixtures/class/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/class/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/class/template.marko
  • packages/prettyprint/test/fixtures/comments-inline-complex/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/comments-inline-complex/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/comments-inline-complex/template.marko
  • packages/prettyprint/test/fixtures/comments-inline-nested/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/comments-inline-nested/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/comments-inline-nested/template.marko
  • packages/prettyprint/test/fixtures/comments-inline/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/comments-inline/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/comments-inline/template.marko
  • packages/prettyprint/test/fixtures/comments/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/comments/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/comments/template.marko
  • packages/prettyprint/test/fixtures/comments2/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/comments2/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/comments2/template.marko
  • packages/prettyprint/test/fixtures/component/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/component/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/component/template.marko
  • packages/prettyprint/test/fixtures/declaration/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/declaration/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/declaration/template.marko
  • packages/prettyprint/test/fixtures/doctype/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/doctype/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/doctype/template.marko
  • packages/prettyprint/test/fixtures/dynamic-tag-name/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/dynamic-tag-name/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/dynamic-tag-name/template.marko
  • packages/prettyprint/test/fixtures/editorconfig/.editorconfig
  • packages/prettyprint/test/fixtures/editorconfig/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/editorconfig/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/editorconfig/template.marko
  • packages/prettyprint/test/fixtures/editorconfig/test.js
  • packages/prettyprint/test/fixtures/formating-tags-multiline/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/formating-tags-multiline/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/formating-tags-multiline/template.marko
  • packages/prettyprint/test/fixtures/formating-tags-single-line/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/formating-tags-single-line/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/formating-tags-single-line/template.marko
  • packages/prettyprint/test/fixtures/formatting-tag-with-content/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/formatting-tag-with-content/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/formatting-tag-with-content/template.marko
  • packages/prettyprint/test/fixtures/formatting-tag-with-content/test.js
  • packages/prettyprint/test/fixtures/html-style/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/html-style/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/html-style/template.marko
  • packages/prettyprint/test/fixtures/html-style/test.js
  • packages/prettyprint/test/fixtures/if-attr/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/if-attr/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/if-attr/template.marko
  • packages/prettyprint/test/fixtures/import/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/import/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/import/template.marko
  • packages/prettyprint/test/fixtures/imports/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/imports/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/imports/template.marko
  • packages/prettyprint/test/fixtures/indent/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/indent/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/indent/template.marko
  • packages/prettyprint/test/fixtures/indent/test.js
  • packages/prettyprint/test/fixtures/js-block/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/js-block/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/js-block/template.marko
  • packages/prettyprint/test/fixtures/js-line-nested/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/js-line-nested/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/js-line-nested/template.marko
  • packages/prettyprint/test/fixtures/js-line-unformatted/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/js-line-unformatted/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/js-line-unformatted/template.marko
  • packages/prettyprint/test/fixtures/js-line/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/js-line/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/js-line/template.marko
  • packages/prettyprint/test/fixtures/markdown/marko.json
  • packages/prettyprint/test/fixtures/markdown/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/markdown/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/markdown/template.marko
  • packages/prettyprint/test/fixtures/marko-prettyprint-file/.marko-prettyprint
  • packages/prettyprint/test/fixtures/marko-prettyprint-file/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/marko-prettyprint-file/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/marko-prettyprint-file/template.marko
  • packages/prettyprint/test/fixtures/marko-prettyprint-file/test.js
  • packages/prettyprint/test/fixtures/max-line-length/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/max-line-length/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/max-line-length/template.marko
  • packages/prettyprint/test/fixtures/max-line-length/test.js
  • packages/prettyprint/test/fixtures/params-tag/components/foo/index.marko
  • packages/prettyprint/test/fixtures/params-tag/components/foo/marko-tag.json
  • packages/prettyprint/test/fixtures/params-tag/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/params-tag/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/params-tag/template.marko
  • packages/prettyprint/test/fixtures/placeholders-attrs/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-attrs/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-attrs/template.marko
  • packages/prettyprint/test/fixtures/placeholders-body-backslash/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-body-backslash/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-body-backslash/template.marko
  • packages/prettyprint/test/fixtures/placeholders-body-double-backslash/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-body-double-backslash/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-body-double-backslash/template.marko
  • packages/prettyprint/test/fixtures/placeholders-body/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-body/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-body/template.marko
  • packages/prettyprint/test/fixtures/placeholders-string-backslash/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-string-backslash/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-string-backslash/template.marko
  • packages/prettyprint/test/fixtures/placeholders-string-double-backslash/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-string-double-backslash/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-string-double-backslash/template.marko
  • packages/prettyprint/test/fixtures/placeholders-string/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-string/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/placeholders-string/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-2/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-2/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-2/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-3/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-3/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-3/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-compiler-option/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-compiler-option/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-compiler-option/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-pre/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-pre/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-pre/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-script/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-script/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-script/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-textarea/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-textarea/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace-textarea/template.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/preserve-whitespace/template.marko
  • packages/prettyprint/test/fixtures/scriptlet-block/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-block/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-block/template.marko
  • packages/prettyprint/test/fixtures/scriptlet-legacy/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-legacy/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-legacy/template.marko
  • packages/prettyprint/test/fixtures/scriptlet-multi-line/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-multi-line/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-multi-line/template.marko
  • packages/prettyprint/test/fixtures/scriptlet-single-line/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-single-line/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/scriptlet-single-line/template.marko
  • packages/prettyprint/test/fixtures/shorthand-body/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-body/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-body/template.marko
  • packages/prettyprint/test/fixtures/shorthand-class-multiple-placeholder/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-class-multiple-placeholder/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-class-multiple-placeholder/template.marko
  • packages/prettyprint/test/fixtures/shorthand-class-multiple/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-class-multiple/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-class-multiple/template.marko
  • packages/prettyprint/test/fixtures/shorthand-class-single/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-class-single/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-class-single/template.marko
  • packages/prettyprint/test/fixtures/shorthand-id-classes/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-id-classes/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-id-classes/template.marko
  • packages/prettyprint/test/fixtures/shorthand-id/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-id/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/shorthand-id/template.marko
  • packages/prettyprint/test/fixtures/single-line/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/single-line/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/single-line/template.marko
  • packages/prettyprint/test/fixtures/special-syntax-tags/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/special-syntax-tags/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/special-syntax-tags/template.marko
  • packages/prettyprint/test/fixtures/static-function/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/static-function/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/static-function/template.marko
  • packages/prettyprint/test/fixtures/static/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/static/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/static/template.marko
  • packages/prettyprint/test/fixtures/style-less/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/style-less/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/style-less/template.marko
  • packages/prettyprint/test/fixtures/style-sass/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/style-sass/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/style-sass/template.marko
  • packages/prettyprint/test/fixtures/style/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/style/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/style/template.marko
  • packages/prettyprint/test/fixtures/syntax-concise/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/syntax-concise/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/syntax-concise/template.marko
  • packages/prettyprint/test/fixtures/syntax-html/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/syntax-html/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/syntax-html/template.marko
  • packages/prettyprint/test/fixtures/syntax-mixed/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/syntax-mixed/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/syntax-mixed/template.marko
  • packages/prettyprint/test/fixtures/tag-whitespace/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/tag-whitespace/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/tag-whitespace/rendered-concise-expected.html
  • packages/prettyprint/test/fixtures/tag-whitespace/rendered-html-expected.html
  • packages/prettyprint/test/fixtures/tag-whitespace/template.marko
  • packages/prettyprint/test/fixtures/tag-whitespace/test.js
  • packages/prettyprint/test/fixtures/var-array/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/var-array/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/var-array/template.marko
  • packages/prettyprint/test/fixtures/var-concise/pretty-concise-expected.marko
  • packages/prettyprint/test/fixtures/var-concise/pretty-html-expected.marko
  • packages/prettyprint/test/fixtures/var-concise/template.marko
  • packages/prettyprint/test/main.test.js
  • packages/prettyprint/test/util/autotest.js
  • packages/serve/CHANGELOG.md
  • packages/serve/README.md
  • packages/serve/package.json
  • packages/serve/src/bin.js
  • packages/serve/src/cli.js
  • packages/serve/src/get-port.js
  • packages/serve/src/index.js
  • packages/serve/test/fixtures/add-route/after-serve-expected.html
  • packages/serve/test/fixtures/add-route/build-expected.html
  • packages/serve/test/fixtures/add-route/serve-expected.html
  • packages/serve/test/fixtures/add-route/static-expected.html
  • packages/serve/test/fixtures/add-route/target/a.marko
  • packages/serve/test/fixtures/add-route/test.js
  • packages/serve/test/fixtures/custom-browserslist/.browserslistrc
  • packages/serve/test/fixtures/custom-browserslist/build-expected.html
  • packages/serve/test/fixtures/custom-browserslist/serve-expected.html
  • packages/serve/test/fixtures/custom-browserslist/static-expected.html
  • packages/serve/test/fixtures/custom-browserslist/target.marko
  • packages/serve/test/fixtures/custom-webpack-config/build-expected.html
  • packages/serve/test/fixtures/custom-webpack-config/serve-expected.html
  • packages/serve/test/fixtures/custom-webpack-config/static-expected.html
  • packages/serve/test/fixtures/custom-webpack-config/target.marko
  • packages/serve/test/fixtures/custom-webpack-config/webpack.config.js
  • packages/serve/test/fixtures/directory-index/build-expected.html
  • packages/serve/test/fixtures/directory-index/serve-expected.html
  • packages/serve/test/fixtures/directory-index/static-expected.html
  • packages/serve/test/fixtures/directory-index/target/bar.marko
  • packages/serve/test/fixtures/directory-index/target/components/example.marko
  • packages/serve/test/fixtures/directory-index/target/foo/hello.marko
  • packages/serve/test/fixtures/image/build-expected.html
  • packages/serve/test/fixtures/image/serve-expected.html
  • packages/serve/test/fixtures/image/static-expected.html
  • packages/serve/test/fixtures/image/target/index.marko
  • packages/serve/test/fixtures/params-and-queries-deprecated/build-expected.html
  • packages/serve/test/fixtures/params-and-queries-deprecated/serve-expected.html
  • packages/serve/test/fixtures/params-and-queries-deprecated/static-expected.html
  • packages/serve/test/fixtures/params-and-queries-deprecated/target/blog/:id.marko
  • packages/serve/test/fixtures/params-and-queries-deprecated/test.js
  • packages/serve/test/fixtures/params-and-queries/build-expected.html
  • packages/serve/test/fixtures/params-and-queries/serve-expected.html
  • packages/serve/test/fixtures/params-and-queries/static-expected.html
  • packages/serve/test/fixtures/params-and-queries/target/blog/[id].marko
  • packages/serve/test/fixtures/params-and-queries/test.js
  • packages/serve/test/fixtures/root-path-folder/build-expected.html
  • packages/serve/test/fixtures/root-path-folder/serve-expected.html
  • packages/serve/test/fixtures/root-path-folder/static-expected.html
  • packages/serve/test/fixtures/root-path-folder/target/index/index.marko
  • packages/serve/test/fixtures/simple/build-expected.html
  • packages/serve/test/fixtures/simple/serve-expected.html
  • packages/serve/test/fixtures/simple/static-expected.html
  • packages/serve/test/fixtures/simple/target.marko
  • packages/serve/test/fixtures/update/after-serve-expected.html
  • packages/serve/test/fixtures/update/build-expected.html
  • packages/serve/test/fixtures/update/serve-expected.html
  • packages/serve/test/fixtures/update/static-expected.html
  • packages/serve/test/fixtures/update/target.marko
  • packages/serve/test/fixtures/update/test.js
  • packages/serve/test/index.test.js
  • packages/test/CHANGELOG.md
  • packages/test/README.md
  • packages/test/package.json
  • packages/test/src/bin.js
  • packages/test/src/cli.js
  • packages/test/src/index.js
  • packages/test/src/util/MarkoDevTools.js
  • packages/test/src/util/browser-tests-runner/browser-dependencies/.babelrc
  • packages/test/src/util/browser-tests-runner/browser-dependencies/index.js
  • packages/test/src/util/browser-tests-runner/bundler.js
  • packages/test/src/util/browser-tests-runner/driver.js
  • packages/test/src/util/browser-tests-runner/index.js
  • packages/test/src/util/browser-tests-runner/server.js
  • packages/test/src/util/browser-tests-runner/template.marko
  • packages/test/src/util/browser-tests-runner/util/ensure-called.js
  • packages/test/src/util/browser-tests-runner/util/wdio-defaults.js
  • packages/test/src/util/loadTests.js
  • packages/test/src/util/server-tests-runner/index.js
  • packages/test/src/util/server-tests-runner/mocha-tests-server.js
  • pnpm-workspace.yaml
  • vitest.config.ts
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dpiercey-ws-cli-create-n9kgdk

Comment @coderabbitai help to get the list of available commands.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant