Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
5b9892a
πŸ• Add pack-next (esbuild) bundler and Node 20 compile fixes
jjpaulino Feb 27, 2026
071df6b
πŸ• Add PostCSS 8 CSS, font, template, vendor, and media asset pipeline…
jjpaulino Mar 1, 2026
a68ff0c
πŸ• Extract Vue 2 SFC styles into _kiln-plugins.css on every build
jjpaulino Mar 1, 2026
398e816
πŸ• Suppress per-file rebuild warnings in watch mode to reduce terminal…
jjpaulino Mar 1, 2026
f68def9
πŸ• Orchestrate full asset pipeline, add chokidar watch mode, and gener…
jjpaulino Mar 1, 2026
475562d
πŸ• Move DS/Eventify/Fingerprint2 and process shims into claycli defaults
jjpaulino Mar 1, 2026
c2a0d3a
πŸ• Add browserCompatPlugin and enhance serviceRewritePlugin for Clay e…
jjpaulino Mar 1, 2026
3c564db
πŸ• Rename lib/cmd/pack-next β†’ lib/cmd/build and update CLI command fro…
jjpaulino Mar 1, 2026
dda78a8
πŸ• Fix Node engine requirement: lower from >=22.0.0 to >=20.0.0
jjpaulino Mar 1, 2026
7795380
πŸ• feat(build): add per-step progress display with animated summary line
jjpaulino Mar 1, 2026
d588601
πŸ• feat(build): add test suite, documentation, and backward-compat notes
jjpaulino Mar 1, 2026
a9299e8
πŸ• docs(build): replace ASCII pipeline diagram with Mermaid flowcharts
jjpaulino Mar 1, 2026
d7c3c13
docs(build): redesign pipeline diagram as single side-by-side comparison
jjpaulino Mar 1, 2026
30c8594
docs(build): fix subgraph title overlap in pipeline diagram
jjpaulino Mar 1, 2026
21a0a95
docs(build): fill out delta column in pipeline comparison table
jjpaulino Mar 1, 2026
03fc295
docs(build): correct CSS watch mode comparison β€” clay compile used fu…
jjpaulino Mar 1, 2026
cc1d95d
docs(build): remove redundant 'API called from' row in script resolut…
jjpaulino Mar 1, 2026
439d5e0
docs(build): fix CSS watch timing claim and expand PM section with we…
jjpaulino Mar 1, 2026
8c322f4
docs(build): correct inaccurate claim that clay compile loaded all co…
jjpaulino Mar 1, 2026
a324459
docs(build): comprehensive accuracy sweep and case-strengthening addi…
jjpaulino Mar 1, 2026
43812a8
update readme
jjpaulino Mar 2, 2026
1606c9d
πŸ• Fix export/import when a page has a url property
jjpaulino Mar 5, 2026
bedc829
Update version temporarily
jjpaulino Mar 6, 2026
cc86ab9
make tests more human readable
jjpaulino Mar 7, 2026
ccf2c37
Merge branch 'jordan/fix-url-imports' of github.com:clay/claycli into…
jjpaulino Mar 7, 2026
a84cfc6
not just url but also customUrl
jjpaulino Mar 7, 2026
dbc906d
Merge branch 'jordan/fix-url-imports' of github.com:clay/claycli into…
jjpaulino Mar 7, 2026
760165f
Fix customUrl/url not being remapped when both fields present or when…
jjpaulino Mar 7, 2026
47249ee
Merge branch 'jordan/fix-url-imports' into jordan/yolo-update
jjpaulino Mar 7, 2026
d867c6c
ready for next phase
jjpaulino Mar 7, 2026
e8854ad
one more update to the clay build readme
jjpaulino Mar 7, 2026
535e8a9
update readme
jjpaulino Mar 7, 2026
b8e51cf
fix sites media directory
jjpaulino Mar 7, 2026
f173640
generate client env json file
jjpaulino Mar 7, 2026
6c5f401
mount components on demand, avoid browserify old behavior
jjpaulino Mar 8, 2026
af1c9b1
Dont use code splitting on edit mode
jjpaulino Mar 8, 2026
34b69d3
fix: exclude dynamic-import entries from manifest to prevent 500+ edi…
jjpaulino Mar 8, 2026
f9b26da
perf: bundle global/js/*.js as a single non-splitting entry to cut vi…
jjpaulino Mar 8, 2026
9ba5685
fix: correct relative path in _globals-init.js generator
jjpaulino Mar 8, 2026
8226a48
implement modulepreload and move claycli config from sites to claycli
jjpaulino Mar 8, 2026
e4acc5e
update docs with amphora html changes
jjpaulino Mar 8, 2026
a994f8d
fix pipeline to stop failing
jjpaulino Mar 8, 2026
95b5a02
EXCLUDE MODEL FILES FROM ENTRY GLOBS NOT NECESSARY FINALLY
jjpaulino Mar 9, 2026
02cecac
Almost set with everything
jjpaulino Mar 9, 2026
d248442
Make readme point to correct URLs.
jjpaulino Mar 9, 2026
f090e5e
test parallel for templates and css files
jjpaulino Mar 9, 2026
1d13dd5
fix: shim window.modules in _kiln-edit-init.js for clay-kiln compat
jjpaulino Mar 9, 2026
4d2d2a7
update readme and tests
jjpaulino Mar 10, 2026
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
144 changes: 0 additions & 144 deletions .circleci/config.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .circleci/scripts/deploy-docs.sh

This file was deleted.

45 changes: 0 additions & 45 deletions .circleci/scripts/release.sh

This file was deleted.

28 changes: 0 additions & 28 deletions .github/main.workflow

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches: ['**']
pull_request:
branches: ['**']

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ website/build/
website/yarn.lock
website/node_modules
website/i18n/*
*.tgz
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
Loading