Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@stacksjs/sms

stacksjs226MIT0.70.23TypeScript support: included

The Stacks SMS integration. Painlessly create & manage your inboxes, templates, and send sms.

sms, stacks, gupshup, nexmo, plivo, sms77, sns, telnyx, termii, twilio

readme

Social Card of Stacks

Rapid App & Library Development

npm version GitHub Actions Commitizen friendly npm downloads

[!WARNING] Stay tuned. Open Beta coming soon.

Stacks is a rapid development framework, where the goal is to help you create & maintain frontends, backends, and clouds—without having to worry about the boilerplate. An all-in-one toolkit that meets all your full stack needs.

  • Web & Desktop Applications (including system tray apps)
  • Serverless & Traditional APIs
  • Cloud Infrastructure Creation & Maintenance
  • Interactive CLIs
  • Framework-agnostic Component & Function Libraries
  • Deployment & Release Manager (CI & CD)

Convention Over Configuration

As a developer, Stacks helps you every step along the way—in beginner & expert-friendly ways, allowing you to focus on the what & why of your project, all while enabling you to stay in control & ownership of your (& your users’) data.

“It is the framework’s responsibility to remove patterns that lead to boilerplate code. And Stacks is really good at that.” - Chris

Get Started

It’s incredibly easy to get started with this framework. Simply run the following command in your terminal:

curl -Ssf stacksjs.org/install | sh # wip

# alternatively, if Bun >= v1.2.14 is installed already,
# you may also get started via:
bunx buddy new my-project

Usage

The following list includes some of the most common ways to interact with the Stacks API.

Meet the toolkit, Buddy:

buddy install # installs all dependencies
buddy dev # starts one of the dev servers (frontend, API, components, docs, desktop, etc.)
buddy share # creates a sharable link of your local project
buddy build # follow CLI prompts to select which library (or server) to build
buddy commit # follow CLI prompts for committing changes
buddy release # creates the releases for the stack & consequently, publishes them to npm
buddy upgrade # auto-update all deps & the Stacks framework

buddy make:component HelloWorld # scaffolds a Component
buddy make:function HelloWorld # scaffolds a Function
buddy make:model Car # scaffolds a Model
buddy make:action UpdateCar # scaffolds an Action
buddy make:migration create_cars_table # scaffolds a Migration
buddy make:view Car # scaffolds a Page (https://my-project.test/car)
buddy make:command Inspire # scaffolds a Command
buddy make:job SendEmail # scaffolds a Job
buddy make:middleware Logger # scaffolds a new Middleware
buddy make:notification WelcomeEmail # scaffolds a Notification
buddy make:lang de # scaffolds a language file

buddy list # lists all available commands
buddy --help
<summary>View the complete Buddy Toolkit</summary>
buddy --version # get the Stacks version
buddy --help # view help menu
# please note: you may suffix any command with the
# `command --help` flag to review the help menu

buddy install # installs dependencies
buddy add # adds a stack or dependency
buddy fresh # fresh reinstall of all deps
buddy clean # removes all deps
buddy setup # sets up the project initially
buddy setup:oh-my-zsh # optional: sets up Oh My Zsh with auto-completions & "aliases"

buddy upgrade # upgrades all dependencies
buddy upgrade -i # prompts you to select which updates to apply (wip)
buddy upgrade:dependencies # auto-upgrades package.json deps
buddy upgrade:framework # auto-upgrades deps & the Stacks framework
buddy upgrade:search-engine # auto-upgrades configured search engine
buddy upgrade:shell # upgrades the shell integration
buddy upgrade:binary # upgrades the `stacks` binary
buddy upgrade:bun # upgrades to latest project-defined Bun version
buddy upgrade:all # auto-upgrades all of the above

# if you need any more info on any command listed here, you may suffix
# any of them via the "help option", i.e. `buddy ... --help`

buddy dev # starts the frontend dev server
buddy dev -i # prompts any of the dev servers (components, functions, views, docs, or api)
buddy dev:api # starts the API dev server
buddy dev:dashboard # starts the Admin/Dashboard dev server
buddy dev:desktop # starts the Desktop dev server
buddy dev:views # starts frontend dev server
buddy dev:components # starts component dev server
buddy dev:functions # stubs functions
buddy dev:docs # starts local docs dev server
buddy dev docs # also starts the local docs dev server (colon is optional for all commands)
buddy development # `buddy dev` alias

buddy share # creates a sharable link to your local project

# for Laravel folks, `serve` may ring more familiar than the `dev` name. Hence, we aliased it:
buddy serve
buddy serve:components
buddy serve:desktop
buddy serve:views
buddy serve:functions
buddy serve:docs

# building for production (e.g. AWS, Google Cloud, npm, Vercel, Netlify, et al.)
buddy build # select a specific build (follow CLI prompts)
buddy build:views # builds SSG views
buddy build:desktop # builds Desktop application
buddy build:library # builds any or all libraries
buddy build:functions # builds function library
buddy build:components # builds Vue component library & Web Component library
buddy build:web-components # builds framework agnostic Web Component library (i.e. Custom Elements)
buddy build:vue-components # builds Vue 2 & 3-ready Component library
buddy build:all # builds all your code

# `buddy build` aliases
buddy prod
buddy prod:components
buddy prod:desktop
buddy prod:library
buddy prod:views
buddy prod:functions
buddy prod:vue-components
buddy prod:web-components
buddy prod:all
buddy production # `buddy prod` alias

# sets your application key
buddy key:generate

buddy make:component HelloWorld # bootstraps a HelloWorld component
buddy make:function hello-world # bootstraps a hello-world function
buddy make:view hello-world # bootstraps a hello-word page
buddy make:model Car # bootstraps a Car model
buddy make:database cars # creates a cars database
buddy make:migration create_cars_table # creates a cars migration file
buddy make:factory cars # creates a Car factory file
buddy make:table cars # bootstraps a cars data table
buddy make:notification welcome-email # bootstraps a welcome-email notification
buddy make:lang de # bootstraps a lang/de.yml language file
buddy make:stack my-project # shares logic with `bunx --bun stacks new my-project`

buddy migrate # runs database migrations
buddy migrate:dns # sets the ./config/dns.ts file

buddy dns example.com # list all DNS records for example.com
buddy dns example.com --type MX # list MX records for example.com (proxies dog)

buddy https httpie.io/hello
# http [flags] [METHOD] URL [ITEM [ITEM]]
buddy http --help
buddy http PUT pie.dev/put X-API-Token:123 name=John # Custom HTTP method, HTTP headers and JSON data
buddy http -v pie.dev/get # See the request that is being sent using one of the output options
buddy http -f POST pie.dev/post hello=World # submitting forms
buddy http --offline pie.dev/post hello=offline
buddy http -a USERNAME POST https://api.github.com/repos/httpie/cli/issues/83/comments body='HTTPie is awesome! :heart:'
buddy http pie.dev/post < files/data.json
buddy http pie.dev/image/png > image.png
buddy http --download pie.dev/image/png
buddy http --session=logged-in -a username:password pie.dev/get API-Key:123
buddy http --session=logged-in pie.dev/headers
buddy http localhost:8000 Host:example.com

buddy lint # runs linter
buddy lint:fix # runs linter and fixes issues

buddy commit # follow CLI prompts for committing staged changes
buddy release # creates the releases for the stack & triggers the Release Action (workflow)
buddy changelog # generates CHANGELOG.md

# when deploying your app/s to a remote server or cloud provider
buddy deploy # select a specific deployment (follow CLI prompts)
# buddy deploy:docs # deploys docs to AWS (or other configured provider)
# buddy deploy:functions # deploys functions to AWS (or other configured provider)
# buddy deploy:views # deploys views to AWS (or other configured provider)
# buddy deploy:all # deploys all your code
buddy undeploy # be careful: "undeploys" removes/deletes your deployed resources

buddy cloud:remove # removes cloud setup
buddy cloud:cleanup # removes cloud setup & cleans up all potentially leftover resources
buddy cloud:add --jump-box # adds a jump box to your cloud setup

# select the example to run (follow CLI prompts)
buddy example # prompts you to select which example to run
buddy example:vue # runs the Vue example
buddy example:web-components # runs the Web Component example

# you likely won’t need to run these commands as they are auto-triggered, but they are available
buddy generate  # prompts you to select which generator to run
buddy generate:types # generates types for your components, functions, & views
buddy generate:entries # generates entry files for components, functions, & views
buddy generate:web-types # generates Web Component types
buddy generate:vscode-custom-data # generates VSCode custom data
buddy generate:ide-helpers # generates IDE helpers
buddy generate:component-meta # generates component meta
buddy generate:all # runs all generators

# generates your application key
buddy key:generate # generates your application key

# manage your environment variables
buddy env:get # get an environment variable
buddy env:set # set an environment variable
buddy env:encrypt # encrypt an environment variable
buddy env:decrypt # decrypt an environment variable
buddy env:keypair # generate a keypair
buddy env:rotate # rotate a keypair

# generate your TypeScript declarations
buddy types:generate # generates types for your components, functions, & views
buddy types:fix # auto-fixes types for your components, functions, & views

buddy domains # alias for `buddy domains:list`
buddy domains:add stacksjs.org # adds a domain
buddy domains:remove stacksjs.org # removes a domain
buddy domains:list # lists all domains
buddy domains:update # apply ./config/dns.ts updates
buddy domains:purchase stacksjs.org # purchase a new domain

# test your stack
buddy test # runs test suite (unit & e2e)
buddy test:coverage # runs test coverage
buddy test:types # runs typecheck

# the CLI may be triggered in any
# of the following syntax:
stx fresh
buddy fresh
bud fresh

Read more here about the Stacks CLI in the documentation.

Features

The Stacks framework is a harmony of several “engines” to build any web and/or desktop application, in highly scalable & privacy-friendly ways. It consists of the following engines:

Frontend Development

Develop dynamic UIs with helpers for atomic design, and much more.

  • 🧩 Components primitive to develop user interfaces
  • 🤖 Functions primitive to develop business logic (and grant your UI superpowers)
  • 🎨 UI Kit modern & deeply-integrated components
  • 🌐 Web “a routing & templating engine that makes sense”
  • 🖥️ Desktop transforms your web app into a desktop app, plus more
  • 📝 Documentation markdown-based documentation, auto-generated
  • 📚 Library auto-builds & manages component & function libraries
  • ⚡️ Powered by Bun, Tauri, UnoCSS, Vite, VitePress and Vue

Backend Development

Develop serverless (or server) functions with countless helpers to build scalable & fast APIs.

  • 🪄 AI deep AI integrations & foundational model access
  • 🤖 APIs scalability & maintainability built-in
  • 🏎️ Cache unified caching for DynamoDB, Redis and more
  • ⚙️ CLIs create beautiful CLIs for Linux, Windows, and Mac (dependency-free binaries)
  • 🛍️ Commerce own & grow your own online business with ease (SaaS-optimized)
  • 📀 Database DynamoDB, SQLite, MySQL, Postgres, and more
  • 👾 Errors native type-safe error handling
  • 🗓️ Events functional event (front & backend) communication
  • 📢 Notifications emails, SMSs, direct, and push notifications & webhooks
  • 🗺️ ORM automated schemas for scale & a pretty API
  • 💳 Payments unified API for one-off & subscription billing methods for Stripe
  • ⚙️ Queues run any heavy workload in the background
  • 🛠️ Query Builder powerful, type-safe SQL query builder
  • 💬 Realtime “everything you need to build dynamic real-time apps”
  • 🧭 Router smart routing, file-based or Laravel-like
  • 🔎 Search Engine smart searching, advanced filtering & sorting, pagination, headless UI
  • 💾 Storage a secure-by-default File API that feels right
  • 🧪 Tinker a powerful TypeScript REPL
  • 🌪️ Validation e2e type-safety (true frontend & backend harmony)
  • 🎯 X-Ray all you need to debug, log & analyze

Cloud Development

Develop & maintain cloud infrastructure with ease. “Imagine Vercel, Vapor and Forge having been unified.”

  • ☁️ Server local development server & production-ready servers out-of-the-box
  • ⛅️ Serverless on-demand, auto-scaling, zero maintenance
  • Alarms built-in cloud infrastructure monitoring to avoid surprises
  • 🚏 CDN zero-config, low-latency, request life-cycle hooks, optimized request compressions (Brotli & gzip)
  • 🔀 Domain version-controlled & zero-config domain management (e.g. DNS management)
  • 🤖 AI fine-tune a foundational model using your application data
  • 📧 Email secure & zero-setup easy-peasy@custom-domains.com mailboxes
  • 🔐 Firewall native web application firewall support
  • 📦 Storage unlimited cloud storage & automatic backups
  • 🚜 Maintenance maintain your cloud infrastructure with ease using Buddy & Stacks
  • 🚦 Infrastructure as Code version-controlled cloud infrastructure (AWS, Google next?)

CI/CD

Focus on coding, not publishing.

  • 🚀 Deployment Manager takes the sweat out of production deployments—zero-setup push-to-deploy
  • 0️⃣ Zero Downtime deploy with confidence using a zero-downtime deployment strategy
  • 📫 Release Manager libraries (component & function) auto-published to npm, git helpers, and more

Developer Experience (DX)

Convention over configuration, while staying wholly configurable. No more boilerplate.

  • 💎 Automated Upgrades no need to worry about upgrading to the latest versions, Stacks upgrades you
  • 🦋 Pretty Dev URLs your-project.localhost instead of localhost:3000
  • 💡 IDE Integration auto-completions, inline docs & a powerful IDE setup
  • 🪄 Zero-Config yet highly configurable—convention over configuration
  • 💅 Linter & Formatter auto-configured & built into your IDE
  • 💪🏼 Type Strong built-in e2e type-safety
  • Git Workflows committing with ease
  • 🚗 Auto Imports your components & functions, including date, string, array, & object helpers
  • Code Snippets goodbye to the boilerplate code—thank you Sarah Drasner
  • 🔤 Spell Checker be notified once there are typos
  • 🛠️ Essential Utilities powers at your fingertips. Collections, VueUse, and more
  • 👥 Team Management manage your team & their permissions
  • 🧪 Streamlined Testing unit & e2e tests powered by Bun, Vitest & Playwright

No matter whether you are a beginner or an expert, the approachable Stacks design allows you to learn at your own pace, using our thorough documentation covering every aspect of the framework. Stacks is extremely beginner & expert-friendly.

Develop beautiful, reactive, composable UIs without learning a new set of languages. HTML, CSS, and minimal JavaScript—that’s all you need to dive in now! Or TypeScript ✌🏼

An actual rapid application development framework for all Full Stack needs. Next-level simplicity & DX.

Testing

./buddy test

Changelog

Please see our releases page for more information on what has changed recently.

Contributing

Please see the Contributing Guide for details.

Community

For help, discussion about best practices, or any other conversation that would benefit from being searchable:

Discussions on GitHub

For casual chit-chat with others using this package:

Join the Stacks Discord Server

Postcardware

“Software that is free, but hopes for a postcard.” We love receiving postcards from around the world showing where Stacks is being used! We showcase them on our website too.

Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States 🌎

Sponsors

We would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.

Credits

And a special thanks to Dan Scanlon for donating the stacks name on npm ✨

License

The MIT License (MIT). Please see LICENSE for more information.

Made with 💙

changelog

Stacks Changelog

v0.70.0...v0.70.1

compare changes

🏡 Chore

❤️ Contributors

v0.69.5...v0.70.0

compare changes

🏡 Chore

❤️ Contributors

v0.69.4...v0.69.5

compare changes

🏡 Chore

❤️ Contributors

v0.69.3...v0.69.4

compare changes

🏡 Chore

❤️ Contributors

v0.69.1...v0.69.2

compare changes

🏡 Chore

❤️ Contributors

v0.69.0...v0.69.1

compare changes

🏡 Chore

❤️ Contributors

v0.68.2...v0.69.0

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.68.0...v0.68.1

compare changes

🏡 Chore

❤️ Contributors

v0.67.0...v0.68.0

compare changes

🏡 Chore

❤️ Contributors

v0.66.0...v0.67.0

compare changes

🏡 Chore

❤️ Contributors

v0.65.1...v0.66.0

compare changes

🏡 Chore

❤️ Contributors

v0.65.0...v0.65.1

compare changes

🏡 Chore

❤️ Contributors

v0.64.6...v0.65.0

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.64.5...v0.64.6

compare changes

🏡 Chore

❤️ Contributors

v0.64.4...v0.64.5

compare changes

🏡 Chore

❤️ Contributors

v0.64.3...v0.64.4

compare changes

🏡 Chore

❤️ Contributors

v0.64.2...v0.64.3

compare changes

🏡 Chore

❤️ Contributors

v0.64.1...v0.64.2

compare changes

🏡 Chore

❤️ Contributors

v0.64.0...v0.64.1

compare changes

🏡 Chore

❤️ Contributors

v0.63.1...v0.64.0

compare changes

🏡 Chore

❤️ Contributors

v0.63.0...v0.63.1

compare changes

🏡 Chore

❤️ Contributors

v0.62.0...v0.63.0

compare changes

🏡 Chore

❤️ Contributors

v0.61.24...v0.62.0

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.61.23...v0.61.24

compare changes

🏡 Chore

❤️ Contributors

v0.61.22...v0.61.23

compare changes

🏡 Chore

❤️ Contributors

v0.61.20...v0.61.21

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.61.19...v0.61.20

compare changes

🏡 Chore

❤️ Contributors

v0.61.18...v0.61.19

compare changes

🚀 Enhancements

  • Adds stepper component (#972)

🏡 Chore

❤️ Contributors

v0.61.17...v0.61.18

compare changes

🏡 Chore

❤️ Contributors

v0.61.16...v0.61.16-4-g5da107688

compare changes

🏡 Chore

❤️ Contributors

v0.61.15...v0.61.15-4-gf3365cf2f

compare changes

🏡 Chore

❤️ Contributors

v0.61.14...v0.61.14-2-g4d624c43c

compare changes

🏡 Chore

❤️ Contributors

v0.61.13...v0.61.13-2-ge6e42811e

compare changes

🏡 Chore

❤️ Contributors

v0.61.12...v0.61.12-2-g625ca05f7

compare changes

🏡 Chore

❤️ Contributors

v0.61.11...v0.61.11-1-g16220e7b2

compare changes

🏡 Chore

❤️ Contributors

v0.61.10...v0.61.10-1-g202ced58b

compare changes

🏡 Chore

❤️ Contributors

v0.61.9...v0.61.9-1-g5f0c743a1

compare changes

🏡 Chore

❤️ Contributors

v0.61.8...v0.61.8-1-g0bfcb1075

compare changes

🏡 Chore

❤️ Contributors

v0.61.7...v0.61.7-1-g46928dbef

compare changes

🏡 Chore

❤️ Contributors

v0.61.6...v0.61.6-1-g13b4e4049

compare changes

🏡 Chore

❤️ Contributors

v0.61.5...v0.61.5-1-g6e11a8c8a

compare changes

🏡 Chore

❤️ Contributors

v0.61.4...v0.61.4-2-g5175c0180

compare changes

🏡 Chore

❤️ Contributors

v0.61.3...v0.61.3-2-g3bff7afa3

compare changes

🏡 Chore

❤️ Contributors

v0.61.2...v0.61.2-2-gd8aef77ac

compare changes

🏡 Chore

❤️ Contributors

v0.61.1...v0.61.1-1-g014763933

compare changes

🏡 Chore

❤️ Contributors

v0.61.0...v0.61.0-1-gaf2a2804b

compare changes

🏡 Chore

❤️ Contributors

v0.60.3...v0.60.3-352-g05c620f69

compare changes

🏡 Chore

❤️ Contributors

v0.60.1...v0.60.1-25-g3ba016bfc

compare changes

🏡 Chore

❤️ Contributors

v0.60.0...v0.60.0-1-g15a9ca29b

compare changes

🏡 Chore

❤️ Contributors

v0.59.11...v0.59.11-21-g44be341df

compare changes

🏡 Chore

❤️ Contributors

v0.59.10...v0.59.10-6-gdb3d099af

compare changes

🏡 Chore

❤️ Contributors

v0.59.9...v0.59.9-1-g920a9125f

compare changes

🏡 Chore

❤️ Contributors

v0.59.8...v0.59.8-2-g8030c9a22

compare changes

🏡 Chore

❤️ Contributors

v0.59.7...v0.59.7-1-gb1c27f7e3

compare changes

🏡 Chore

❤️ Contributors

v0.59.6...v0.59.6-3-gd00439ec7

compare changes

🏡 Chore

❤️ Contributors

v0.59.5...v0.59.5-3-g3de5d8452

compare changes

🏡 Chore

❤️ Contributors

v0.59.4...v0.59.4-1-gc990c8bd8

compare changes

🏡 Chore

❤️ Contributors

v0.59.3...v0.59.3-4-g14ad08d62

compare changes

🏡 Chore

❤️ Contributors

v0.59.2...v0.59.2-1-g310a9dc3c

compare changes

🏡 Chore

❤️ Contributors

v0.59.1...v0.59.1-1-g1815dd088

compare changes

🏡 Chore

❤️ Contributors

v0.59.0...v0.59.0-2-g7a322a3ca

compare changes

🏡 Chore

❤️ Contributors

v0.58.73...v0.58.73-92-g03f9b3211

compare changes

🏡 Chore

❤️ Contributors

v0.58.72...v0.58.72-52-ge1f18dfc0

compare changes

🏡 Chore

❤️ Contributors

v0.58.71...v0.58.71-21-g5e9e8b7cf

compare changes

🏡 Chore

❤️ Contributors

v0.58.70...v0.58.70-2-g94170bc71

compare changes

🏡 Chore

❤️ Contributors

v0.58.69...v0.58.69-2-ga9e828d6f

compare changes

🏡 Chore

❤️ Contributors

v0.58.68...v0.58.68-6-g729ff1503

compare changes

🏡 Chore

❤️ Contributors

v0.58.67...v0.58.67-3-g04a4eb608

compare changes

🏡 Chore

❤️ Contributors

v0.58.66...v0.58.66-2-g65450cd49

compare changes

🏡 Chore

❤️ Contributors

v0.58.65...v0.58.65-10-ge46c4008e

compare changes

🏡 Chore

❤️ Contributors

v0.58.65...v0.58.65-3-gd47ed35f9

compare changes

🏡 Chore

❤️ Contributors

v0.58.64...v0.58.64-3-g940445637

compare changes

🏡 Chore

❤️ Contributors

v0.58.63...v0.58.63-9-g1a08f9650

compare changes

🏡 Chore

❤️ Contributors

v0.58.62...v0.58.62-2-g926b279f0

compare changes

🏡 Chore

❤️ Contributors

v0.58.61...v0.58.61-4-gda717877e

compare changes

🏡 Chore

❤️ Contributors

v0.58.59...v0.58.59-7-gd6bf1dd18

compare changes

🏡 Chore

❤️ Contributors

v0.58.58...v0.58.58-18-g2577ee1a1

compare changes

🏡 Chore

❤️ Contributors

v0.58.57...v0.58.57-10-g3ef615e47

compare changes

🏡 Chore

❤️ Contributors

v0.58.56...v0.58.56-6-g2e54f4049

compare changes

🏡 Chore

❤️ Contributors

v0.58.55...v0.58.55-1-g916e3b170

compare changes

🏡 Chore

❤️ Contributors

v0.58.54...v0.58.54-1-g0802a82b9

compare changes

🏡 Chore

❤️ Contributors

v0.58.53...v0.58.53-7-gea666512b

compare changes

🏡 Chore

❤️ Contributors

v0.58.52...v0.58.52-4-gcc19b2d85

compare changes

🏡 Chore

❤️ Contributors

v0.58.51...v0.58.51-33-g29973a7be

compare changes

🏡 Chore

❤️ Contributors

v0.58.50...v0.58.50-1-gfd58d56cb

compare changes

🏡 Chore

❤️ Contributors

v0.58.49...v0.58.49-14-g181e3fbc0

compare changes

🏡 Chore

❤️ Contributors

v0.58.48...v0.58.48-4-g5ea885fff

compare changes

🏡 Chore

❤️ Contributors

v0.58.47...v0.58.47-1-g3270adb8c

compare changes

🏡 Chore

❤️ Contributors

v0.58.46...v0.58.46-1-g481774dc4

compare changes

🏡 Chore

❤️ Contributors

v0.58.45...v0.58.45-2-g230693555

compare changes

🏡 Chore

❤️ Contributors

v0.58.44...v0.58.44-7-g879005ebf

compare changes

🏡 Chore

❤️ Contributors

v0.58.43...v0.58.43-1-g64ac11d4d

compare changes

🏡 Chore

❤️ Contributors

v0.58.42...v0.58.42-3-g67d24c34f

compare changes

🏡 Chore

❤️ Contributors

v0.58.41...v0.58.41-15-g2fd767145

compare changes

🏡 Chore

❤️ Contributors

v0.58.40...v0.58.40-4-g7b0ff7ba0

compare changes

🩹 Fixes

🏡 Chore

❤️ Contributors

v0.58.39...v0.58.39-1-g1120760f6

compare changes

🏡 Chore

❤️ Contributors

v0.58.38...v0.58.38-1-gc47d6e406

compare changes

🏡 Chore

❤️ Contributors

v0.58.37...v0.58.37-1-g739afa12a

compare changes

🏡 Chore

❤️ Contributors

v0.58.36...v0.58.36-1-ga71998423

compare changes

🏡 Chore

❤️ Contributors

v0.58.35...v0.58.35-1-gcf735b305

compare changes

🏡 Chore

❤️ Contributors

v0.58.34...v0.58.34-2-g37233de9a

compare changes

🏡 Chore

❤️ Contributors

v0.58.33...v0.58.33-1-g2e6cd0cda

compare changes

🏡 Chore

❤️ Contributors

v0.58.32...v0.58.32-1-g3ad25ae2d

compare changes

🏡 Chore

❤️ Contributors

v0.58.31...v0.58.31-1-g469f8f185

compare changes

🏡 Chore

❤️ Contributors

v0.58.30...v0.58.30-4-g14ecffb81

compare changes

🏡 Chore

❤️ Contributors

v0.58.30...v0.58.30-1-ga9e0011d4

compare changes

🏡 Chore

❤️ Contributors

v0.58.29...v0.58.29-6-gd6347ed7d

compare changes

🏡 Chore

❤️ Contributors

v0.58.28...v0.58.28-121-gcd82a0f0a

compare changes

🏡 Chore

❤️ Contributors

v0.58.27...v0.58.27-1-g8a94423d8

compare changes

🏡 Chore

❤️ Contributors

v0.58.26...v0.58.26-1-g155f48580

compare changes

🏡 Chore

❤️ Contributors

v0.58.25...v0.58.25-2-ge53177eb8

compare changes

🏡 Chore

❤️ Contributors

v0.58.24...v0.58.24-16-gbaf2943a1

compare changes

🏡 Chore

❤️ Contributors

v0.58.23...v0.58.23-1-g992033f91

compare changes

🏡 Chore

❤️ Contributors

v0.58.22...v0.58.22-6-g0935eda20

compare changes

🏡 Chore

❤️ Contributors

v0.58.21...v0.58.21-1-gb9e6aaaad

compare changes

🏡 Chore

❤️ Contributors

v0.58.20...v0.58.20-2-ga021770cf

compare changes

🏡 Chore

❤️ Contributors

v0.58.20...v0.58.20-1-g946b25eac

compare changes

🏡 Chore

❤️ Contributors

v0.58.19...v0.58.19-1-gde8da104b

compare changes

🏡 Chore

❤️ Contributors

v0.58.18...v0.58.18-1-geeef7b89a

compare changes

🏡 Chore

❤️ Contributors

v0.58.17...v0.58.17-1-gbc6c105ff

compare changes

v0.58.15...v0.58.16

compare changes

🏡 Chore

❤️ Contributors

v0.58.15...v0.58.15-1-g3b6717583

compare changes

🏡 Chore

❤️ Contributors

v0.58.14...v0.58.14-3-g342569365

compare changes

🏡 Chore

❤️ Contributors

v0.58.13...v0.58.13-1-g60e26eb3b

compare changes

🏡 Chore

❤️ Contributors

v0.58.12...v0.58.12-1-g201ccbab9

compare changes

🏡 Chore

❤️ Contributors

v0.58.11...v0.58.11-1-gf0515b3c2

compare changes

🏡 Chore

❤️ Contributors

v0.58.10...v0.58.10-1-g5df6b423f

compare changes

🏡 Chore

❤️ Contributors

v0.58.9...v0.58.9-1-gfceb1cff3

compare changes

🏡 Chore

❤️ Contributors

v0.58.8...v0.58.8-1-gdc923a45c

compare changes

🏡 Chore

❤️ Contributors

v0.58.7...v0.58.7-2-g64676b589

compare changes

🏡 Chore

❤️ Contributors

v0.58.6...v0.58.6-1-ga59e5acaf

compare changes

🏡 Chore

❤️ Contributors

v0.58.5...v0.58.5-1-g5427fbfdf

compare changes

🏡 Chore

❤️ Contributors

v0.58.4...v0.58.4-13-gf91846bee

compare changes

🏡 Chore

❤️ Contributors

v0.58.3...v0.58.3-1-g2a35dd1f5

compare changes

🏡 Chore

❤️ Contributors

v0.58.2...v0.58.2-1-ge31b4b4b3

compare changes

🏡 Chore

❤️ Contributors

v0.58.1...v0.58.1-2-g189055a65

compare changes

🏡 Chore

❤️ Contributors

v0.58.0...v0.58.0-14-gb48e8678e

compare changes

🏡 Chore

❤️ Contributors

v0.57.4...v0.57.4-979-g4705a4bf7

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.56.2...v0.56.2-3-g699175a6

compare changes

🏡 Chore

❤️ Contributors

v0.56.1...v0.56.1-1-g9f969313

compare changes

🏡 Chore

❤️ Contributors

v0.56.0...v0.56.0-7-g42b2d729

compare changes

🏡 Chore

❤️ Contributors

v0.55.0...v0.55.0-12-g497e6bf6

compare changes

🏡 Chore

❤️ Contributors

v0.54.5...v0.54.5-62-g1b50016f

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.54.4...v0.54.4-1-g800e625c

compare changes

🏡 Chore

❤️ Contributors

v0.54.3...v0.54.3-1-g62901e78

compare changes

🏡 Chore

❤️ Contributors

v0.54.2...v0.54.2-1-ga0455f01

compare changes

🏡 Chore

❤️ Contributors

v0.54.1...v0.54.1-3-gde50ba2d

compare changes

🏡 Chore

❤️ Contributors

v0.54.0...v0.54.0-1-gdb4b714a

compare changes

🏡 Chore

❤️ Contributors

v0.53.1...v0.53.1-48-g5d339349

compare changes

🏡 Chore

❤️ Contributors

v0.53.0...v0.53.0-1-gd7b3dea1

compare changes

🏡 Chore

❤️ Contributors

v0.52.10...v0.52.10-14-g5e466e1c

compare changes

🏡 Chore

❤️ Contributors

v0.52.9...v0.52.9-1-gd92d4d44

compare changes

🏡 Chore

❤️ Contributors

v0.52.8...v0.52.8-3-ga499b9b8

compare changes

🏡 Chore

❤️ Contributors

v0.52.7...v0.52.7-1-g844b4086

compare changes

🏡 Chore

❤️ Contributors

v0.52.5...v0.52.6

compare changes

🏡 Chore

❤️ Contributors

v0.52.4...v0.52.5

compare changes

🏡 Chore

❤️ Contributors

v0.52.3...v0.52.4

compare changes

🏡 Chore

❤️ Contributors

v0.52.3...v0.52.3-2-gea343eaa

compare changes

🏡 Chore

❤️ Contributors

v0.52.2...v0.52.2-2-gb7b71c58

compare changes

🏡 Chore

❤️ Contributors

v0.52.1...v0.52.1-1-g9cfd7401

compare changes

🏡 Chore

❤️ Contributors

v0.52.0...v0.52.0-18-ge8186d35

compare changes

🏡 Chore

❤️ Contributors

v0.51.0...v0.51.0-417-gdb9de340

compare changes

🚀 Enhancements

🏡 Chore

❤️ Contributors

v0.50.0...v0.50.0-44-g54afb753

🏡 Chore

  • Wip (6da6601b)
  • Wip (c5bf976c)
  • Wip (9b172293)
  • Wip (393e4dc4)
  • Wip (c6ba9a8d)
  • Wip (7098a0ac)
  • Wip (488e1554)
  • Wip (0c5b9f42)
  • Wip (d0ed55fc)
  • Wip (1ff1920b)
  • Wip (7e9f3409)
  • Wip (25678a1a)
  • Wip (c657751e)
  • Wip (fcfaea66)
  • Wip (820430f6)
  • Wip (27923094)
  • Wip (da47da21)
  • Wip (9d679477)
  • Wip (410a42b6)
  • Wip (e6427245)
  • Wip (b1cfd5a0)
  • Wip (917c799d)
  • Wip (7c476f51)
  • Wip (6e36dfc5)
  • Wip (e2f40549)
  • Wip (7753f868)
  • Wip (56dcdeb3)
  • Wip (8e8ee362)
  • Wip (35abd817)
  • Wip (6351e758)
  • Wip (ea3e59f8)
  • Wip (54afb753)

❤️ Contributors

v0.49.3...v0.49.3-8-g39181398

🏡 Chore

  • Wip (20722240)
  • Wip (48a9759f)
  • Wip (6685d8a9)
  • Wip (0c968fb6)
  • Wip (7bc205bc)
  • Wip (cf215775)
  • Wip (39181398)

❤️ Contributors

v0.49.2...v0.49.2-18-g5da2aa8e

🚀 Enhancements

  • dx: Add vscode-thunder-client (e769121d)

🏡 Chore

  • Wip (58171510)
  • Wip (84dfd0b5)
  • Wip (089a5fd2)
  • Wip (3928e52e)
  • Wip (a5c5f37b)
  • Wip (632e219d)
  • Wip (a3435b03)
  • Wip (223fddf6)
  • Wip (ffa5e1b3)
  • Wip (4cc38fe2)
  • Wip (a29e2a33)
  • Wip (8abc1313)
  • Wip (5da2aa8e)

❤️ Contributors

v0.49.1...v0.49.1-12-g4f890521

🏡 Chore

  • Wip (842b014c)
  • Wip (faeb96b0)
  • Wip (f8d610ba)
  • Wip (454e1df5)
  • Wip (56f4fb3d)
  • Wip (d5d5e94c)
  • Wip (1b2c31cc)
  • Wip (bd8ed56b)
  • Wip (77a954bd)
  • Wip (4f890521)

❤️ Contributors

v0.49.0...v0.49.0-1-g3aa4ab10

🏡 Chore

  • Wip (3aa4ab10)

❤️ Contributors

v0.48.3...v0.48.3-28-g15d2a204

🏡 Chore

  • Wip (db8b31c4)
  • Wip (f370a448)
  • Wip (70a3cf48)
  • Wip (42db3c54)
  • Wip (3bd32836)
  • Wip (09ad85e6)
  • Wip (42be853a)
  • Wip (23bfe78b)
  • Wip (a41b7175)
  • Wip (dbbb1729)
  • Wip (1190d4e5)
  • Wip (4940d9b5)
  • Wip (b1104281)
  • Wip (1dfb93a8)
  • Wip (56b9bea2)
  • Wip (5ed0cbc0)
  • Wip (b81437df)
  • Wip (23fb13d2)
  • Wip (15d2a204)

❤️ Contributors

v0.48.2...v0.48.2-1-g8a5cdf04

🏡 Chore

  • Wip (8a5cdf04)

❤️ Contributors

v0.48.1...v0.48.1-3-gd94ec7e6

🏡 Chore

  • Wip (7040504b)
  • Wip (d94ec7e6)

❤️ Contributors

v0.48.0...v0.48.0-2-g3db0c2f3

🏡 Chore

  • Wip (804487a0)
  • Wip (3db0c2f3)

❤️ Contributors

v0.47.4...v0.47.4-42-g1b8d1710

🏡 Chore

  • Wip (21994e13)
  • Wip (e0dfff87)
  • Wip (ccea9619)
  • Wip (322c383c)
  • Wip (c11e7b29)
  • Wip (e8eb97e4)
  • Wip (e08e76ca)
  • Wip (522521c9)
  • Wip (7939053f)
  • Wip (4c3c1115)
  • Wip (b7f89c0c)
  • Wip (83a36dbe)
  • Wip (c856f16c)
  • Wip (6b9747de)
  • Wip (8171ff9f)
  • Wip (36646d2d)
  • Wip (25d93f88)
  • Wip (2205b483)
  • Wip (42603dcf)
  • Wip (728b94e7)
  • Wip (0f08f38b)
  • Wip (4d6776a7)
  • Wip (fef63269)
  • Wip (249ce2a2)
  • Wip (f591b495)
  • Wip (375884a9)
  • Wip (c3f4396a)
  • Wip (b0228236)
  • Wip (e8b59e41)
  • Wip (8048ba27)
  • Wip (fa10fb8d)
  • Wip (2667a7fa)
  • Wip (dae60853)
  • Wip (50b2c321)
  • Wip (5f41bb85)
  • Wip (1b8d1710)

❤️ Contributors

v0.47.3...v0.47.3-1-g7ee77f90

🏡 Chore

  • Wip (7ee77f90)

❤️ Contributors

v0.47.2...v0.47.2-7-gf144a2b7

🏡 Chore

  • Wip (ed62f347)
  • Wip (bcb76892)
  • Wip (017c5d0a)
  • Wip (6830ca7c)
  • Wip (d28e5c2f)
  • Wip (2f4849f5)
  • Wip (f144a2b7)

❤️ Contributors

v0.47.1...v0.47.1-1-g3aca84eb

🏡 Chore

  • Wip (3aca84eb)

❤️ Contributors

v0.47.0...v0.47.0-4-g626f5a51

🏡 Chore

  • Wip (8d5c80ac)
  • Wip (b520f5f9)
  • Wip (626f5a51)

❤️ Contributors

v0.46.4...v0.46.4-15-gde5b445d

🏡 Chore

  • Wip (7a4634f3)
  • Wip (3b7234db)
  • Wip (e4214558)
  • Wip (368e9b87)
  • Wip (146a7cdd)
  • Wip (82e7ac2c)
  • Wip (78425c44)
  • Wip (8ef48ddf)
  • Wip (ae310712)
  • Wip (35978bfe)
  • Wip (1a0f14c0)
  • Wip (de5b445d)

❤️ Contributors

v0.46.3...v0.46.3-1-g7fa094e8

🏡 Chore

  • Use spinner when lint fixing (7fa094e8)

❤️ Contributors

v0.46.2...v0.46.2-7-g8c3eb1df

🏡 Chore

  • Wip (a80e6839)
  • Wip (763c5d42)
  • Wip (514b0afa)
  • Wip (8c3eb1df)

❤️ Contributors

v0.46.1...v0.46.1-1-geb8e83c3

🩹 Fixes

  • Ensure changelog generation from previous to current version (eb8e83c3)

❤️ Contributors

v0.46.0...v0.46.1

🩹 Fixes

  • Properly define changelog command (70c12b26)

🏡 Chore

  • Add changelog (c4d5ed80)
  • Release v0.46.1 (549e9346)

❤️ Contributors

v0.1.0...v0.45.2

🚀 Enhancements

  • dx: Add composable scopes (48470862)
  • dx: Add cspell& lint-staged (da6a2e8a)
  • dx: Add simple-git-hooks (272465f7)
  • dx: Add changelog script (384c6289)
  • dx: Add new dev script behavior (680a3338)
  • dx: Simplify release script (48fd9a4e)
  • dx: Become a commitizen (ef15c7f1)
  • tooling: Automatically sort package.json (6c92fa70)
  • tooling: Introduce unocss as styling engine (e2a16cf9)
  • tooling: Setup commitlint via ts (4d7bbaf7)
  • tooling: Improve vscode settings (41907d2f)
  • tooling: Icons in Pure CSS (3644e778)
  • tooling: Add new scopes (7812bfe3)
  • Added package.json links (b55a305d)
  • core: Add core logic (#87)
  • core: Improve build logic for composables (0f0edc2a)
  • dx: Improve & simplify the build processes (0d8aa5d0)
  • core: Distribute stacks core on npm (16c90d46)
  • ci: Add prepublishOnly hook (dcffc527)
  • Add icons config (af71d13f)
  • Add styles config (94485168)
  • dx: Add improved vs code file explorer (06220f57)
  • Expose docs config (c9b89a5d)
  • dx: Automatically clean all app node_modules (9d11a3c6)
  • dx: Add todo-tree to vscode setup (f5839a7d)
  • dx: Vscode setup improvements (e9a8e144)
  • Add ow3 eslint config (e0960cfe)
  • core: Simplify stacks architecture (444c2d83)
  • dx: Add fnm & nvm integration (39b9f999)
  • dx: Add vscode output colorizer (7b201102)
  • Allow tree shaking via sideEffects (75bba51b)
  • dx: Add docs scope (cccea4c9)
  • Add functions config (06d9cd0c)
  • Use vite 3 (37142412)
  • Use vite 3 (4371c052)
  • Add latest auto imports (0333f425)
  • dx: Use Laravel-like collections (9457963a)
  • dx: Automatically create library package.json files (5c567d58)
  • dx: Add a npm option for build process (98b22757)
  • Default to node 18.9.0 support (75c02cb7)
  • core: Export build options (2bb4af5f)
  • dx: Add repository to auto-imports (93e5bb4a)
  • dx: Add scripts scope (6d0fa258)
  • dx: Use gegit for setups (48a47493)
  • dx: Add generate:types command (a5faad99)
  • dx: Generate types upon building for npm (4563b6da)
  • dx: Add commit command (a055fe02)
  • cli: Add build:stacks command (9ff02565)
  • test: Add istanbul coverage (ec02b06d)
  • cli: Add artisan-init support (995a5f4c)
  • Add determineResetPreset logic (17ca7d02)
  • cli: Add debug option for initial setup (13ddab5d)
  • ci: Add export-size workflow (bea08028)
  • cli: Add update:node (8f377709)
  • core: Add logging (5c254416)
  • Add isServer util (b1536c81)
  • Add domains package (ab1c3bd4)

🩹 Fixes

  • dx: Eslint issue (03970384)
  • dx: Ensure the release flow works (70f333c6)
  • tooling: Release should generate the changelog correctly (f822954d)
  • tooling: Also ensure to commit the changelog (40bb2f78)
  • tooling: Release flow (4cfe2e84)
  • tooling: Also commit the changelog (f9d962e3)
  • tooling: Do not commit changelog during creation (0d0d99bf)
  • tooling: Use the "all" flag properly (5e0bfecf)
  • deps: Add missing prompts (e1133f91)
  • tooling: Properly instantiate unocss (b53a0965)
  • tooling: Update volar namespace (28ed5cb9)
  • tooling: Add missing cypress dep (f2a0610f)
  • Lint-staged (5de3c19b)
  • release: Use env value (b4785eaa)
  • core: Automatic type & eslintrc generation (3c7179f8)
  • core: Temp aliases workaround (b6eec12f)
  • core: Set composable build outdir (d38b99d7)
  • ci: Properly filter for the stacks package (5913ecad)
  • build: Adjust build script to include stacks (3ba166d3)
  • core: Point aliases more specifically to local files (88333701)
  • ci: Remove prepublishOnly hook (488e3b9e)
  • dx: Properly declare dependencies for builds (de091d24)
  • Update lockfile (2749fed0)
  • Properly link to build exports (72bbe5d8)
  • core: Properly build stacks (35d9a14b)
  • Adjust the stacks exports (927d4f38)
  • Ensure eslint runs (e7338a50)
  • Resolve proper components index (49429619)
  • dx: Ensure package.json files are included in version control (d05f4e96)
  • dx: Bump auto-generated package.json files (b8a1973c)
  • Link to stacks built files (e5945d78)
  • ci: Stacks publish script (f54f96a3)
  • ci: Adjust the repository url (6f284c8b)
  • ci: Add pnpm workspaces (e7dc99b7)
  • Properly identify whether isDirectory (918bee0e)
  • build: Several issues (e6c6de22)
  • ci: Release script (3e4c424f)
  • build: Sort export order (ed9906ed)
  • config: Adjust default package.json values (f7eb5d2c)

💅 Refactors

  • core: core to .stacks (98f1c033)
  • Use config git-hooks.ts (8514eb52)
  • Define aliases on config level (e8f06e6d)
  • Implement stacks core (b1652c3d)
  • Remove packages dir (#108)
  • Use stacks aliases (16970aa6)
  • core: Improve & simplify build process (16367fa3)
  • core: Improve build architecture (93e6d3e0)
  • Finalize new scripts structure (c41aa33c)
  • Remove plugin folder (f8b9c2de)
  • Cleanup (99d4a8a7)
  • core: Use Stacks plugin (aab6daf9)
  • Minor updates & cleanups (06d36c5c)
  • Use pathe instead of node:path (fae4c598)
  • Several updates (e3d3df22)
  • build: Use unbuild (365f943a)
  • Many minor updates (e57c53e5)
  • Minor build adjustments (cf0d1526)
  • build: Unbuild improvements (eb53a9ae)
  • config: Simplify library config (e456084a)
  • Use vite for functions build (a71ac3e1)
  • cli: Adjustments to artisan (661d8608)

📖 Documentation

  • readme: Versioning explanation (87af6f62)
  • readme: Remove wc reference (86b2f556)
  • readme: Adjust the default library name (58e13f6f)
  • readme: Use openwebs namespace (36cb04b2)
  • readme: Add commitizen reference (75c41d06)
  • Add dummy pages (c8446341)
  • Adjust hero name (3b1642aa)
  • Remove icon (cb4c7c77)
  • Adjust description (a8a7e33c)

🏡 Chore

  • Wip (c4dd9790)
  • tooling: Use renovate preset (3526a267)
  • Wip (38e988fa)
  • Wip (22b97670)
  • Add missing dep (00e83811)
  • release: 0.2.1 (8ecb4962)
  • dx: Remove husky (7c661c5b)
  • dx: Only use prettier for vue files (8c8d4ac9)
  • dx: Adjust commit script (0a58feac)
  • dx: Teach new words (c21342b4)
  • docs: Update changelog (f5a0a928)
  • dx: Add more cspell words (53846fec)
  • Use comment for simplicity (eeb85315)
  • dx: Improve commitlint setup (58035ca2)
  • dx: Remove standard-version dep (d37e1474)
  • tooling: Remove "index" and .ts from scope names (f44b239c)
  • docs: Improve wording (b1762bd6)
  • housecleaning: Remove unused deps (adb7f5b0)
  • docs: Changelog addition (7e5fa108)
  • tooling: Remove redundante scope (192b2596)
  • release: 0.5.0 (0e1f4c3b)
  • docs: Add icon (5660b0ec)
  • docs: Rearrange sections (b3739dfe)
  • docs: Add missing word (2ffc61c3)
  • docs: Add template section (f2c7026a)
  • tooling: Adjust types (6474f066)
  • release: 0.6.0 (bc77e1d4)
  • docs: Changelog (42d69e3d)
  • release: 0.7.0 (5a80c157)
  • release: 0.7.1 (2f2d806b)
  • release: 0.7.2 (19356b80)
  • release: 0.7.3 (50d1ad7d)
  • docs: Updated the changelog (700bc2a4)
  • release: 0.7.4 (7681f3c6)
  • tooling: Add deps scope (464c53b3)
  • release: 0.7.5 (2f926cb4)
  • docs: Readme updates (4dcefd3b)
  • docs: Readme updates (2aeac8fc)
  • docs: Adjust readme (cf06a312)
  • docs: Adjust readme (b1ec786f)
  • tooling: Remove unused eslint config file (abd4fbcb)
  • cleanup: Remove Tailwind remnants (7937b4d5)
  • cleanup: File name adjustments (40f06572)
  • release: 0.8.0 (028f4f2f)
  • release: 0.9.0 (c61f39ac)
  • cleanup: Remove already imported types (e1614d84)
  • cleanup: Remove stylesheets in favor of scoped styling (cf3bc6f9)
  • cleanup: Remove the examples folder (da4ca641)
  • Improve build process (81a9f48d)
  • release: 0.9.1 (5c6cd95a)
  • tooling: Adjust the commitlint scopes (14b5fbc7)
  • release: 0.9.2 (88083ddc)
  • Cleanup (cba7c8e2)
  • release: 0.9.3 (d1716765)
  • Add package manager to packaga.json (550fa45b)
  • Deps (904e9d44)
  • Lint (d9e3cf4e)
  • tooling: Skip linting cypress (644cd72a)
  • release: 0.10.0 (1d1fdc4a)
  • Fix tests (200a6c23)
  • release: 0.11.0 (b4803541)
  • Wip (80586767)
  • Wip (96dbfc42)
  • Wip (66f57137)
  • Wip (89e23ab5)
  • Wip (f72163fa)
  • Wip (3ef35809)
  • Wip (b94dcbbc)
  • Wip (f1e8a51b)
  • Wip (492d3cf1)
  • Wip (dd40a844)
  • Wip (45f80e94)
  • Wip (8379bdde)
  • Wip (9c89bd28)
  • Wip (0b73d6e1)
  • Wip (50d783f6)
  • Wip (bc8804d5)
  • Wip (c582214a)
  • Wip (f1255204)
  • Wip (0ee3dead)
  • Wip (936a739e)
  • Wip (6c16b853)
  • Wip (813318a9)
  • Wip (0282941d)
  • Wip (073f8567)
  • Wip (9d5db742)
  • Wip (cdfc18e4)
  • Wip (b3cb9a11)
  • Wip (53ec63c1)
  • Wip (c3941511)
  • Wip (19e3b434)
  • Wip (085684be)
  • Wip (1a9c9bdd)
  • Wip (e08416c9)
  • Wip (7fec7c75)
  • Wip (39845ca3)
  • Wip (cbcc60ae)
  • Wip (a6a6a31c)
  • Wip (b74c3cfe)
  • Wip (b5712569)
  • Wip (a433e464)
  • Wip (fe0fa67e)
  • Wip (14d5cd02)
  • Wip (d3b6a9f7)
  • Wip (c40b3c56)
  • Wip (1c3d04e5)
  • Wip (f0b30795)
  • Wip (4f617971)
  • Wip (8e1d3579)
  • Wip (265f4912)
  • Wip (1facd653)
  • Wip (9cffd0e9)
  • Wip (dba2e44d)
  • Wip (d54db9e4)
  • Wip (2f35028f)
  • Wip (60a47e7f)
  • Wip (b395049e)
  • Wip (be18fdf6)
  • Wip (58983489)
  • Wip (34eadd51)
  • Wip (c58e9df8)
  • release: 0.11.1 (a24fa45f)
  • Wip (51bbdb5a)
  • release: 0.12.0 (62d1db5e)
  • Wip (7debf0f4)
  • Wip (68a7b6b8)
  • release: 0.12.1 (1fa432b7)
  • Wip (5be3f2e2)
  • Wip (cab203fc)
  • Wip (8b80cc4a)
  • Wip (8fa09615)
  • release: 0.13.0 (ba6d2ffa)
  • Wip (3435908a)
  • release: 0.13.1 (c75d6a00)
  • Wip (de903c9f)
  • release: 0.13.2 (09f0c310)
  • Wip (ab12378c)
  • Wip (168fbd11)
  • Wip (dd4a455f)
  • Wip (5b520876)
  • Wip (be766faa)
  • release: 0.13.3 (48d43d3b)
  • release: 0.13.4 (b0e3fe3b)
  • Wip (36a4dd69)
  • Wip (2384eae3)
  • Wip (3dcf36c8)
  • Wip (a65cec24)
  • Wip (9db763b7)
  • Wip (4fab838c)
  • Wip (c43087f4)
  • Wip (7e433540)
  • Wip (b980ef00)
  • release: 0.13.5 (e189631d)
  • Wip (0385698e)
  • Wip (ce181eb8)
  • Wip (8d847389)
  • Wip (a257e939)
  • Wip (b04bd7eb)
  • Wip (0ee37450)
  • Wip (20220afe)
  • Wip (02bbaa83)
  • Wip (4cf04dbd)
  • release: 0.13.6 (5acc8758)
  • Wip (2014914f)
  • Wip (541dd8bf)
  • release: 0.13.7 (2f559567)
  • Wip (d214cb0a)
  • Wip (f9a86c83)
  • Wip (a66d4e13)
  • Wip (25e6ad11)
  • Wip (29502d7a)
  • Wip (2b8f3068)
  • release: 0.13.8 (597ae75e)
  • Wip (063bf9b4)
  • release: 0.13.9 (d75ee3c5)
  • Wip (c71414dc)
  • Wip (6d621a9d)
  • Wip (edab0562)
  • release: 0.13.10 (565ef69a)
  • Wip (d0a89c8b)
  • release: 0.13.11 (dff74d9a)
  • Wip (87c26475)
  • Wip (eb2a26db)
  • Wip (07a6bee3)
  • Wip (6b615ef2)
  • Wip (539144c2)
  • Use ow3 renovate config preset (9d6a533e)
  • Wip (730aa6a2)
  • Wip (84d49811)
  • Wip (e8ac5c65)
  • Wip (d8ad8295)
  • Wip (117ddf57)
  • Wip (74917241)
  • Wip (02026e43)
  • Wip (be587bda)
  • release: 0.13.12 (9096aa3c)
  • Wip (5f4202c3)
  • Wip (7d9ab4b1)
  • Wip (784e5e21)
  • Wip (0a16e19a)
  • Wip (6a2daf09)
  • Wip (e36af12f)
  • Wip (ea97bd3f)
  • Wip (066065c7)
  • Wip (5322fd9a)
  • Wip (c97b8797)
  • Wip (22dfa0b7)
  • Wip (372a844a)
  • Wip (4c8992a4)
  • Wip (fdfe60cd)
  • Wip (2ee11890)
  • Wip (6cdfa4cd)
  • Wip (803ec63b)
  • Wip (32521f29)
  • Wip (d17b9fc9)
  • release: 0.13.13 (93eefea4)
  • Wip (cb6f2b63)
  • Wip (e28cd395)
  • Wip (96bd2237)
  • release: 0.14.0 (93ac5be1)
  • Wip (b3c251b8)
  • release: 0.14.1 (49869fad)
  • Wip (5c6a8515)
  • Wip (30733272)
  • Wip (0d3f6648)
  • Wip (ec453c84)
  • Wip (4094ac3e)
  • Wip (066a4320)
  • Wip (1447fa69)
  • Wip (c27b4ecd)
  • Wip (859614fe)
  • Wip (067a291d)
  • Wip (0c934cf3)
  • Wip (12a0ded1)
  • release: 0.14.2 (a8c4a544)
  • Wip (dd1afec6)
  • Wip (91489d42)
  • Wip (28abca2c)
  • Wip (34169b6b)
  • Wip (fdbaa79d)
  • Wip (a5083e8a)
  • Wip (fef98085)
  • Wip (2333cb7e)
  • Wip (2bc6c0be)
  • Wip (35475550)
  • Wip (0e5211f2)
  • Wip (a4b68af8)
  • Wip (25a17911)
  • Wip (21b45b64)
  • Wip (c5e973d4)
  • Wip (d53acb07)
  • Wip (0c3694db)
  • Wip (2d42f69a)
  • Wip (c085c5ec)
  • Wip (3eaef4a0)
  • Wip (3a12482f)
  • Wip (7687c894)
  • Wip (92ec5922)
  • Wip (e53b29d1)
  • Wip (bd4d79cb)
  • Wip (b7394759)
  • Wip (36ab9f6a)
  • Wip (d563682f)
  • release: 0.14.3 (372037ec)
  • release: 0.15.0 (2664d2a7)
  • Wip (7aacb49a)
  • release: 0.15.1 (34d197ce)
  • Wip (ffb63bec)
  • Wip (a38f00a3)
  • Wip (98e41764)
  • Wip (fecac3a2)
  • Wip (162ba24a)
  • Wip (c70795af)
  • Wip (1d5f0c6a)
  • Wip (b806ca20)
  • Wip (71f8e9a7)
  • Wip (66edbc8e)
  • Wip (fb18154d)
  • Wip (d00562d9)
  • Wip (eaa44338)
  • Wip (cec92ffc)
  • Wip (c2ad1058)
  • Wip (b3594d5c)
  • Wip (528d399c)
  • Wip (1a44f641)
  • Wip (5924ad96)
  • Wip (f0b2ba1c)
  • Wip (d6d228c0)
  • Wip (5a90b9ea)
  • Wip (996f0a4b)
  • Wip (9c6ac9cf)
  • Wip (7d7eca21)
  • Wip (ffc9fce6)
  • Wip (ffe7ae21)
  • Wip (a7c34356)
  • Wip (1c8b0990)
  • Wip (859ddf2d)
  • Wip (ad5cde74)
  • Wip (61a3d784)
  • Wip (e7e3ac4b)
  • Wip (3318325a)
  • Wip (3d1d6094)
  • Wip (443adaa6)
  • Wip (64ade3f4)
  • Wip (67eff14b)
  • Wip (fd4d9c11)
  • Wip (556dd806)
  • Wip (cfff9aa2)
  • Wip (650defb0)
  • Wip (680ae281)
  • Wip (620bac19)
  • Wip (c8d41095)
  • Wip (6ff75333)
  • Wip (92df4e98)
  • Wip (6357df0a)
  • Wip (825aea67)
  • release: 0.16.0 (b6b61e68)
  • Wip (0f2146de)
  • Wip (937d476e)
  • Wip (943d09a2)
  • Wip (ad7c5b91)
  • Wip (ef733d10)
  • Wip (f31abedc)
  • Wip (49283008)
  • Wip (104c61c0)
  • Wip (c47cc650)
  • Wip (5ea7bedb)
  • Wip (bcff36ce)
  • Wip (e2ebf7b0)
  • Wip (eaa81003)
  • Wip (d4290824)
  • Wip (2461567a)
  • Wip (e34114b9)
  • Wip (539b01a2)
  • Wip (2c9a8271)
  • Wip (5db905ce)
  • Wip (18477794)
  • Wip (131a0bf5)
  • Wip (77b5267b)
  • Wip (6dd5b02b)
  • Wip (7ecfbe1e)
  • Wip (e9cc3388)
  • Wip (789d5828)
  • Wip (988fb68b)
  • Wip (a1989714)
  • Wip (ba111564)
  • Wip (5f071b8a)
  • Wip (f3156f4f)
  • Wip (b1da62c0)
  • Wip (e444edd5)
  • Wip (65b51be2)
  • Wip (ed800c1e)
  • Wip (58126bfa)
  • Wip (c383beac)
  • Wip (46507342)
  • Wip (fb7a7003)
  • Wip (5e22fd90)
  • Wip (881a7a0a)
  • Wip (deb6729c)
  • Wip (6488c843)
  • Wip (14455c07)
  • Wip (055421c2)
  • Wip (1e2e5f10)
  • Wip (b55ec60e)
  • Wip (7bbd8106)
  • Wip (50a6632b)
  • Wip (27bf298e)
  • Wip (d491dd15)
  • Wip (7610db54)
  • Wip (731caf29)
  • Wip (d52eedd3)
  • Wip (9bc0a158)
  • Wip (d7222aa5)
  • Wip (5aec7c0a)
  • Wip (4bb96038)
  • Wip (8b0b6ce6)
  • Wip (060e3cd3)
  • Wip (0b284f7d)
  • Wip (c0a610c4)
  • Wip (57f730db)
  • Wip (9fefc95b)
  • Wip (380b9eed)
  • Structure updates (#80)
  • Adjust the changelog path (e8a7cf42)
  • Release v0.17.0 (1095e1c6)
  • Remove unused config file (28afe8a4)
  • config: Add scopes to changelog (34892851)
  • Release v0.17.1 (fafeb78c)
  • Several cleanups (4ddc2c4c)
  • Use different alias reflecting package name (5b318c25)
  • composables: Adjust package.json (4f668363)
  • dx: Extend the proper "auto import" file (62d58c17)
  • readme: Updates (83ec3d4d)
  • readme: Cover & copy updates (9ac11160)
  • core: Simplify stacks alias (d73d5dfa)
  • Release v0.18.0 (ef3134ff)
  • Create apps readme (bfad9b86)
  • Release v0.18.1 (7fdbe514)
  • Release v0.18.2 (10559a4a)
  • Release v0.18.3 (76cbef16)
  • Rename vite.config to build.config (b746fab5)
  • Release v0.18.4 (2e366c2d)
  • Release v0.19.0 (4a4638de)
  • Release v0.19.1 (2fe9dfce)
  • Release v0.19.2 (876ffa38)
  • Release v0.20.0 (61a6cf3e)
  • core: Adjust dev deps (79975e71)
  • Release v0.20.1 (de6a4e7e)
  • dx: Adjust fresh command (8d596015)
  • Release v0.20.2 (727d7b52)
  • dx: Adjust pnpm workspaces (06103a29)
  • Release v0.20.3 (fd35e4f3)
  • Release v0.20.4 (a2c1920b)
  • Eslint fix (6f0fe783)
  • ci: Test removing of pnpm install (f0527162)
  • Release v0.20.5 (233396b5)
  • Release v0.20.6 (81e747d0)
  • Update readme (43607511)
  • readme: Updates (5b1a2c4f)
  • readme: Add import reference (ad4ae438)
  • Several copy updates (b50b338a)
  • Adjust VueUse readme reference (63f40f15)
  • readme: Additional copy updates (18f6699d)
  • readme: Adjust zero-config wording (f8cd121a)
  • Teach the word automagically (d9c951a3)
  • readme: Update vitepress reference (a0a2bbdb)
  • readme: Verbiage update (d5245370)
  • readme: Updates (b7bfede0)
  • Release v0.20.7 (0622ff7b)
  • Release v0.20.8 (5e0c0214)
  • Adjust engines to be compatible with vercel (0cac9c6a)
  • Doc updates (4c3c98c3)
  • Adjust node engine version (45143c58)
  • Adjust more node engines for vercel (51ba0630)
  • Add engine for docs (3879fea8)
  • Update deps (a162ccbe)
  • Improve configs (49a70ea0)
  • Minor updates (c3e6b42e)
  • Update lock file (8950bc58)
  • Release v0.21.0 (9dd50e8f)
  • Remove engine from site (5c56d927)
  • Ensure vue is a dev dependency (48a2d64e)
  • Lint code (8c6a4a86)
  • Add custom elements config (71c5a025)
  • Lint (b249d979)
  • Use artisan hint 👀 (25542767)
  • Improve hooks config (c2bbaf45)
  • General config improvements (9ec58773)
  • Release v0.22.0 (d6950be2)
  • Release v0.22.1 (3519ea97)
  • Update readme (38a9a59d)
  • Update readme (6334a4cb)
  • Remove strict-peer-dependencies (beb6c87f)
  • Ensure proper packages are bumped (9981e5b6)
  • Re-disable strict-peer-dependencies (5e040267)
  • Smaller updates (3068c77c)
  • Adjust root package.json (e9229db2)
  • Some cleanups (c0b83573)
  • Use separate workspace definition (7f775447)
  • Various meta updates (d10acaae)
  • Deps (7cf75a76)
  • Update readme (cc6d3efc)
  • Reuse stacks deps (b3e9b5ab)
  • Improve playground usage (f50bbf12)
  • Remove docs:serve from readme (5769a545)
  • Update "coming soon" (fb183159)
  • Adds few minor improvements & adjustments (cffd605a)
  • readme: Simplify the api some more (93637737)
  • Add readme & script updates (25983570)
  • Ensure dev & typecheck scripts execute (431d2666)
  • dx: Add some additional aliases (3616da78)
  • Update readme (59f4ce9f)
  • More cleanup (3a9a8f80)
  • Improve examples reference in apps readme (e6ec296a)
  • Reword parts of the readme (0ceff1ea)
  • Some more updates (941b0ed5)
  • Finalize the lint commands (5eb7fc73)
  • Abstract the remainder of scripts (04ab59c9)
  • Use non-alias functions (416d93e2)
  • Simplify top level scripts (e58a6ed0)
  • Resolve problems due to missing cspell words (44a6ab54)
  • Update readme social image & node notice (eabfc144)
  • Wip (e706cd64)
  • Wip (e61906e3)
  • Adjust aliases (083bd130)
  • Remove unused script (b6e60f76)
  • Remove dummy folder (8dd6d534)
  • Adjust ide settings (b5fd879c)
  • Release v0.23.0 (850ec6e4)
  • Update deps (2b323fcd)
  • Adjust the social image (c7115edf)
  • Add deploy scripts (5bc114a5)
  • Add plain html ref to zero-config section (7250d14c)
  • Fill in build command (98afd2f4)
  • Move examples and playground into apps (6efed8f8)
  • Rename components package (797188bd)
  • Add aliases into tsconfig (1d3ce06d)
  • docs: Add "Composability-First Design" explanation (fd94d9a9)
  • Update deps & scripts (48496ecc)
  • Update readme (568ca7ca)
  • Do not exclude examples anymore (da8c0ca2)
  • Add tachyons reference (35de56ef)
  • Add diagram (3e433930)
  • Add diagram to readme (6c6ce9a4)
  • Add functions usage example (c8ceb2aa)
  • Add component->page relation into diagram (f6507b21)
  • Add atomic ui & fx diagrams (4942e357)
  • Add roadmap into readme (8332a904)
  • Remove older packages (69f02c77)
  • Ignore nitro built files (19f2f9e9)
  • Update readme (5cbf04d8)
  • Add some more path helpers (d25216b7)
  • Adjust scripts (e333ab45)
  • Minor updates (2aabaa36)
  • Add peerDependencyRules to suppress warnings (12365b0c)
  • Rename org to ow3org (c22bed27)
  • Wip (a0fb13ec)
  • Simplify configs (e5f112a9)
  • Simplify configs (6dca5c35)
  • Export variables (184c1139)
  • Wip (70f482d3)
  • Update diagram (4f1272db)
  • Remove build remnants (b8e95f02)
  • Deps update (5b0b6d26)
  • Wip (6ee4424d)
  • Wip (cfd5fb55)
  • Deps update (b82dc315)
  • Wip (f7918804)
  • Wip (88e52c67)
  • Wip (eead957b)
  • Wip (f28e3171)
  • Wip (93f1a327)
  • Wip (9c816d5b)
  • Wip (1a7ca897)
  • Wip (be7b2b72)
  • Wip (4bcb05b9)
  • Wip (b6665d66)
  • Wip (594fec84)
  • Wip (7560326b)
  • Wip (2e7e4633)
  • Wip (bb1bb984)
  • Wip (971d1402)
  • Wip (a11d322b)
  • Wip (f43c539b)
  • Wip (355bfe11)
  • Wip (baee3ecc)
  • Wip (08b06b18)
  • Wip (32357066)
  • Wip (1f02cc4c)
  • Update deps (ecff3fae)
  • Wip (2c5a4561)
  • Wip (811a6870)
  • Wip (38696485)
  • Wip (a85dfe4c)
  • Wip (3c40cba9)
  • Wip (402115b3)
  • Wip (a9f96d49)
  • Wip (ecbd3a8e)
  • Wip (a073e872)
  • Wip (a9d8ed7a)
  • Wip (6f6df7f4)
  • Wip (8dd586eb)
  • Wip (d0244b45)
  • Wip (74928943)
  • Wip (c02f2b5b)
  • Wip (7cd0b6ab)
  • Wip (d5b4df6a)
  • Wip (643e793f)
  • Wip (00833063)
  • Wip (322e83e2)
  • Wip (7c57b397)
  • Wip (db61de50)
  • Wip (d8cf483a)
  • Wip (3a71fb04)
  • Wip (1940d87f)
  • Wip (aed48d1d)
  • Release v0.23.1 (03c8bd80)
  • Wip (dd233227)
  • Wip (0749ce4a)
  • Wip (80e841b1)
  • Wip (1ced3147)
  • Wip (7ca7a63e)
  • Wip (a573837d)
  • Wip (5d0af065)
  • Wip (45d53632)
  • Wip (af7b2e1e)
  • Wip (cf476bba)
  • Wip (65753dc1)
  • Wip (78877da2)
  • Wip (e2254ade)
  • Wip (2ed24f1a)
  • Release v0.23.2 (eb5f2897)
  • dx: Adds vitest-explorer recommendation (5fd2149b)
  • Wip (5c46cab0)
  • Wip (bb589c1a)
  • Wip (cf48764a)
  • Wip (8679af7b)
  • Release v0.24.0 (6f42855f)
  • Wip (a3584b33)
  • Release v0.24.1 (011c33f9)
  • Cleanup (c8f18b1c)
  • Release v0.25.0 (42bd61ec)
  • Release v0.25.1 (da606ec0)
  • Release v0.25.2 (cef3aaff)
  • Define types in shims (cca92e9d)
  • Ensure package.json is created via release (df0e770e)
  • Release v0.25.3 (4306fc7b)
  • Remove play scope (dc14d6c5)
  • Release v0.25.4 (bbb86db6)
  • readme: Updates (5fe9fba2)
  • Add gitignores (56231e30)
  • Remove namespaces (ea2b2370)
  • Release v0.25.5 (c2d52e93)
  • Release v0.25.6 (f4ced4bf)
  • Release v0.25.7 (5572585d)
  • Release v0.26.0 (b3e474a5)
  • Simplify included stacks types (b8ddc171)
  • Release v0.27.0 (80c3b929)
  • Cleanup (c4a7e98c)
  • Release v0.27.1 (29cc0ade)
  • Updates to gitignore (1f2796fd)
  • Release v0.28.0 (6cd5f2d5)
  • Lint (9aae02d6)
  • Use pathe as dep (304ca912)
  • Release v0.28.1 (1a15b82c)
  • Release v0.28.3 (07b8d326)
  • Release v0.28.4 (dda36e96)
  • ci: Add building of the Stacks release (6ed200e2)
  • Release v0.28.5 (2f1b2955)
  • Default to js ext instead of mjs (f47cd841)
  • Release v0.28.6 (431a53aa)
  • Release v0.29.0 (8736ae28)
  • Release v0.29.1 (6c4f545d)
  • Release v0.29.2 (af578481)
  • Release v0.30.0 (fc539b77)
  • build: Define __dirname for mjs builds (3f4da37d)
  • Release v0.30.1 (4a6672bb)
  • build: Import envPrefix earlier (1ffcb76c)
  • Release v0.30.2 (000f2c56)
  • Release v0.30.3 (9873fbc1)
  • Release v0.30.4 (0de25638)
  • Adjust bug report template (1fa71184)
  • dx: Add eslintrc-auto-import.json (6c3cd345)
  • Update dictionary (a8a731e3)
  • Add test scope (68fddd35)
  • Separate gitignores (aa8e13ac)
  • dx: Add default formatter settings (4ce1e55b)
  • Leave js-fixer action comment (1a0b3dbe)
  • Rename file (49558b64)
  • Wip (083074a5)
  • Wip (77da56df)
  • Always generate types after building (4e518c46)
  • Wip (53a73d67)
  • Release v0.31.0 (fcd754ba)
  • Release v0.31.1 (6b58af81)
  • Wip (43a6c211)
  • Improve types (8b1e7b39)
  • Improve library types (b98aa6f8)
  • Wip (ae40c490)
  • Wip (d44057a5)
  • Wip (78093f42)
  • Wip (dbe62c19)
  • Release v0.31.2 (93038c7b)
  • Wip (78f8959c)
  • Wip (84af9ff9)
  • Release v0.31.3 (a2416f31)
  • Wip (78c331b4)
  • Release v0.31.4 (51d11030)
  • Wip (3a8f9307)
  • Release v0.31.5 (55f700d7)
  • Wip (b1359f82)
  • Wip (3c74feb8)
  • Release v0.31.6 (ce9af2e8)
  • Wip (adf01354)
  • Release v0.31.7 (e67bc97f)
  • Wip (7f4414d4)
  • Release v0.31.8 (89fc1a02)
  • Wip (9aece116)
  • Release v0.31.9 (7b9f4cdf)
  • Release v0.31.10 (e2e09cb9)
  • Include more paths into package (fd2fb4db)
  • Release v0.31.11 (eb75d3c9)
  • Wip (9a811676)
  • Release v0.31.12 (07844672)
  • Wip (865813f0)
  • Release v0.31.13 (d8900b9f)
  • Wip (380e794a)
  • Release v0.31.14 (a281ba2d)
  • Wip (f3e256c0)
  • Wip (49ea5e46)
  • Release v0.31.15 (c8aaadca)
  • build: Package adjustments (fed53853)
  • Release v0.31.16 (5fd89620)
  • Release v0.31.17 (265fb059)
  • Release v0.31.18 (d48b4533)
  • Update readme (885f41d7)
  • Release v0.32.0 (782b2f30)
  • Update readme (81ff9d52)
  • Release v0.32.1 (8f251591)
  • Update copy & add readme (b25bcbf5)
  • Release v0.32.2 (f221f3d1)
  • Add bin (e2ec0e68)
  • Release v0.32.3 (e0f64486)
  • ci: Remove prepublishOnly hook (0387ef64)
  • Release v0.32.4 (63954f49)
  • Wip (6f9c5eb9)
  • Release v0.32.5 (f390e5c6)
  • Release v0.32.6 (89ddeda6)
  • Release v0.32.7 (efd1f0a1)
  • Release v0.32.8 (11d6c7c5)
  • Release v0.32.9 (0d8b6d4f)
  • Release v0.32.10 (82a610bf)
  • Release v0.32.11 (3ba883d1)
  • Wip (10bb83ab)
  • Release v0.32.12 (3a994953)
  • Release v0.32.13 (069cf13b)
  • Release v0.32.14 (b77800c6)
  • Rename to web-components (969fbe14)
  • Release v0.32.15 (b9b041e0)
  • Release v0.32.16 (5c3b05e7)
  • Release v0.32.17 (3c641f8c)
  • Wip (87602ffd)
  • Wip (af1d421c)
  • Wip (9b75d26b)
  • Wip (42d9a55c)
  • Wip (af2f0077)
  • Wip (2586b9fb)
  • Wip (3a6f833c)
  • Wip (b8efd7f4)
  • Release v0.32.18 (656278e9)
  • Wip (fd1b531e)
  • Wip (9b36185e)
  • Wip (da99d993)
  • Add script to install node manager (995bfcdf)
  • Wip (39c7efb9)
  • Release v0.32.19 (951ea702)
  • Wip (b37db1d5)
  • Wip (1e8d4da5)
  • Set the cwd via option (44e9df1b)
  • Wip (001f2444)
  • Release v0.32.20 (6fbf67e2)
  • Wip (536fe5f1)
  • Release v0.33.0 (0287acc3)
  • Release v0.33.1 (e28000d5)
  • cli: Ensure APP_KEY is set upon init (15b79e60)
  • Release v0.33.2 (4479fd4e)
  • Wip (4804fe65)
  • Release v0.33.3 (8b3801b7)
  • Wip (06d42284)
  • Wip (0df4ba0e)
  • Release v0.33.4 (e70154f0)
  • Wip (962dc033)
  • Wip (66cec8bc)
  • Wip (2694d136)
  • Release v0.33.5 (1d6dc2e1)
  • Wip (57ce3cb9)
  • Wip (5d31f028)
  • Wip (c57765a5)
  • Wip (f3e13311)
  • Wip (023bd23c)
  • Wip (5bb9c16a)
  • Wip (9c17a71c)
  • Wip (542dd010)
  • Wip (df729253)
  • Wip (41707071)
  • Wip (e897f2bb)
  • Wip (5dc3ad79)
  • Wip (72d969c5)
  • Wip (fe3abbaf)
  • Wip (f906c6d5)
  • Wip (b7816c38)
  • Wip (8aafde8f)
  • Wip (c189ef12)
  • Wip (c265491d)
  • Wip (8b55ff86)
  • Wip (54660f7a)
  • Wip (3a5a34ac)
  • Wip (999ec156)
  • Wip (410f49a6)
  • Wip (e175c39f)
  • Wip (d3eb6835)
  • Wip (66af9108)
  • Wip (2b15447e)
  • Wip (49526df5)
  • Wip (d578af50)
  • Wip (9675a72c)
  • Wip (3c5ec593)
  • Wip (c5eba7d3)
  • Log improvements (49d9d960)
  • Release v0.33.6 (38502b73)
  • Release v0.33.7 (573e43e1)
  • Increase min node version (4c352b84)
  • Set node version to 18.10.0 (cf4d0076)
  • Wip (1c369615)
  • Do not copy package.json during update (658451ea)
  • Wip (bae88f3a)
  • Release v0.33.8 (d8d22448)
  • Wip (0a15fbe3)
  • Release v0.33.9 (d4994f9d)
  • Wip (4c589502)
  • Wip (b1f20473)
  • Release v0.33.10 (030b5400)
  • Wip (ef4df513)
  • Release v0.33.11 (5379a399)
  • Release v0.33.12 (c0be5765)
  • Wip (3c13f1ee)
  • Release v0.33.13 (a9915469)
  • Wip (15cf7ece)
  • Wip (68362d66)
  • Wip (43a185c2)
  • Wip (36e43e50)
  • Wip (90bc6fd2)
  • Release v0.33.14 (7eabe0ec)
  • Release v0.33.15 (950f1adf)
  • Release v0.33.16 (e4a596bc)
  • Release v0.33.17 (582383a2)
  • Release v0.33.18 (8ba193f6)
  • Wip (130b6a09)
  • Release v0.33.19 (ebaedf7a)
  • Wip (bea9f762)
  • Release v0.33.20 (eb3e042d)
  • Wip (c43eaac1)
  • Release v0.33.21 (57ce9307)
  • Wip (f028a24c)
  • Release v0.33.22 (8f23f35f)
  • Wip (bf22e4ab)
  • Release v0.33.23 (5ab610c2)
  • Wip (826f0a39)
  • Release v0.33.24 (d4f84a35)
  • Wip (c5a1ef77)
  • Release v0.33.25 (8d3e1c96)
  • Wip (bc7644ef)
  • Release v0.33.26 (fb80136b)
  • Wip (f5878dde)
  • Release v0.33.27 (18395611)
  • Wip (aa562828)
  • Release v0.33.28 (e351ac1d)
  • Wip (8a60ec68)
  • Wip (9252e9b5)
  • Wip (c080d22a)
  • Wip (8238a42f)
  • Release v0.33.29 (119d0bdd)
  • Wip (d94f79b9)
  • Wip (3bd69f50)
  • Wip (152d1445)
  • Wip (b893ccbf)
  • Wip (d832f947)
  • Wip (575ce06f)
  • Wip (df69c40b)
  • Wip (10b1817d)
  • Wip (3ddf59de)
  • Wip (f3e64aad)
  • Wip (49f51c08)
  • Wip (7b166a81)
  • Wip (f41e9add)
  • Wip (a5b948d6)
  • Release v0.33.30 (0b05f03c)
  • Wip (87b3001e)
  • Release v0.33.31 (c85cef10)
  • Wip (9f1d9015)
  • Release v0.33.32 (1038b2f7)
  • Release v0.33.33 (1c962c82)
  • Wip (1efa77e0)
  • Release v0.33.34 (a71891e7)
  • Wip (195dcc8c)
  • Release v0.33.35 (325061d1)
  • Release v0.33.36 (3cfcf4db)
  • Wip (d78a4275)
  • Release v0.33.37 (a9ec25c9)
  • Release v0.33.38 (6c0e7ec8)
  • Wip (989d9e10)
  • Release v0.33.39 (88fd439b)
  • Release v0.34.0 (ccb014b7)
  • Add sponsors notice (64fca7ca)
  • Wip (70c74e1e)
  • Wip (34faf15c)
  • Release v0.34.1 (d0497943)
  • Wip (4d0327f6)
  • Wip (856e37b0)
  • Wip (3faeacea)
  • Release v0.34.2 (98a8beee)
  • Wip (e8b44341)
  • Wip (82bb8bea)
  • Release v0.34.3 (a7b48b9e)
  • Keep dist in version control for symlinks (0b42ce62)
  • Release v0.34.4 (a575368e)
  • Wip (9752ece1)
  • Release v0.34.5 (6142d391)
  • Wip (1fc74fb0)
  • Release v0.34.6 (9fc8ed68)
  • Wip (d8e04597)
  • Release v0.34.7 (70c6d3ea)
  • Wip (b9818fc6)
  • Wip (6916d0c1)
  • Wip (e1357573)
  • Wip (35c664ee)
  • Wip (e08a85a7)
  • Release v0.34.8 (c8ae1671)
  • Wip (09ccc850)
  • Wip (e4c90920)
  • Wip (0c19158f)
  • Wip (d1ed8441)
  • Wip (ae71e0e8)
  • Wip (138af5d4)
  • Wip (37790b93)
  • Wip (8d2c391c)
  • Release v0.34.9 (9bfa415e)
  • Wip (efdcec05)
  • Wip (648d7f46)
  • Wip (8ec94c1c)
  • Wip (82039744)
  • Wip (233a5847)
  • Wip (b2a751f5)
  • Wip (2351165e)
  • Wip (11109dbc)
  • Wip (937c4419)
  • Release v0.35.0 (4d67d7e2)
  • Simplify helper paths (f9f0e55b)
  • Wip (2ca212bd)
  • Wip (3219a41c)
  • Wip (0d015f82)
  • Wip (11530b31)
  • Wip (89a2413f)
  • Wip (ff8ac2c1)
  • Wip (2ec675b2)
  • Wip (986c268a)
  • Wip (fb31fa63)
  • Wip (979dcdc1)
  • Wip (18c5ec73)
  • Wip (7ff2b143)
  • Wip (8135dbf6)
  • Wip (bc207692)
  • Wip (60c8848d)
  • Wip (10a31ccd)
  • Wip (a2631681)
  • Wip (a10a6aba)
  • Wip (66ea8a26)
  • Wip (daef2c4b)
  • Wip (1d4f7add)
  • Wip (12724759)
  • Wip (05fe0548)
  • Wip (27948e0f)
  • Wip (c84121d3)
  • Wip (6428187e)
  • Wip (e084a699)
  • Wip (99d32bf5)
  • Wip (a77a390c)
  • Wip (72423d9c)
  • Release v0.36.0 (28bd692a)
  • Release v0.36.1 (6942dcbf)
  • Wip (ebb18b47)
  • Release v0.36.2 (072e03ea)
  • Wip (2247697e)
  • Wip (79786217)
  • Wip (7b5acdd9)
  • Wip (47c04147)
  • Wip (80bca1f2)
  • Wip (396c669a)
  • Wip (585e0873)
  • Release v0.36.3 (022a46a3)
  • Wip (4d998ae7)
  • Wip (49982561)
  • Release v0.36.4 (cdaf986e)
  • Wip (64b25f84)
  • Release v0.36.5 (e795f899)
  • Wip (8099707a)
  • Release v0.36.6 (68366fda)
  • Wip (3008a658)
  • Wip (5182d051)
  • Wip (a135a73c)
  • Wip (765cfec8)
  • Wip (fcdbeef2)
  • Wip (6a640b46)
  • Wip (5b2bcf91)
  • Wip (b85040a9)
  • Wip (5a980a66)
  • Wip (e08bc70c)
  • Wip (247de9aa)
  • Wip (8542f037)
  • Wip (b5bf523c)
  • Wip (e0ade959)
  • Wip (fae670e9)
  • Wip (344b2417)
  • Wip (89602a84)
  • Wip (ab9cc5ca)
  • Wip (0d6eff27)
  • Wip (902c6890)
  • Wip (1a878379)
  • Wip (e4fc52c9)
  • Wip (787e09ef)
  • Wip (eda05c2e)
  • Wip (2e0660cb)
  • Wip (28914cb7)
  • Wip (0dce0b01)
  • Wip (7610bcd6)
  • Wip (7d4f11bc)
  • Wip (d4cce304)
  • Wip (fb446109)
  • Wip (5701dc0f)
  • Wip (46a2ff51)
  • Wip (8936c3b2)
  • Wip (5f0e2017)
  • Wip (7fa7d9cb)
  • Wip (4c7d9480)
  • Wip (b47b2ecd)
  • Wip (d0379e89)
  • Wip (adb9d447)
  • Wip (ef460195)
  • Wip (3be50cc4)
  • Wip (aa28511b)
  • Wip (a5a45e0a)
  • Wip (bc13850c)
  • Wip (4e8eb69c)
  • Wip (1e0dfca1)
  • Wip (311bb756)
  • Wip (097b5d2a)
  • Wip (90eb4ba8)
  • Wip (6abe09bd)
  • Wip (8a007eb7)
  • Wip (61c84440)
  • Wip (802e5d48)
  • Wip (a6f8625d)
  • Wip (3f71f684)
  • Wip (2aab25de)
  • Release v0.37.0 (276cdced)
  • Wip (2dc867ce)
  • Release v0.37.1 (5705e88e)
  • Release v0.37.2 (cc4cf834)
  • Release v0.37.3 (14275a7e)
  • Wip (b6a593f4)
  • Wip (ba86f4dd)
  • Wip (fa11f82d)
  • Release v0.37.4 (15cd5179)
  • Wip (70e4fbff)
  • Wip (df6952d0)
  • Release v0.37.5 (1c6e3719)
  • Release v0.37.6 (7d346d46)
  • Wip (da21adb2)
  • Release v0.37.7 (28c6f67f)
  • Wip (520ad5a7)
  • Release v0.37.8 (fc79c0f4)
  • Wip (e7de5d25)
  • Release v0.37.9 (7ec75ad0)
  • Wip (4a03cc29)
  • Wip (dbce03ae)
  • Wip (e54eea13)
  • Wip (35dbd114)
  • Wip (6bb16bc2)
  • Wip (27281668)
  • Wip (4dc12b7d)
  • Wip (fba1d29d)
  • Wip (90b1578b)
  • Wip (8fdf06b0)
  • Wip (9b36746c)
  • Wip (3d240483)
  • Wip (06ed4015)
  • Wip (799f5d9a)
  • Wip (ec238b0b)
  • Wip (747c171d)
  • Wip (8eb9c2ce)
  • Wip (96f2752c)
  • Wip (41b7c6c1)
  • Wip (7ef12dc6)
  • Wip (c8a291fb)
  • Wip (a106b33d)
  • Wip (5df1436a)
  • Wip (e5e7ae8f)
  • Wip (fb011896)
  • Wip (18945486)
  • Wip (71b81f94)
  • Wip (5bc085b7)
  • Wip (12318908)
  • Wip (b3eb45f0)
  • Wip (c804e0ec)
  • Wip (2a4d2575)
  • Wip (db26e6d0)
  • Wip (17b934fe)
  • Wip (10cbef79)
  • Wip (d66f3c9a)
  • Wip (6824e806)
  • Wip (136779a6)
  • Wip (03a6c495)
  • Wip (6996ff50)
  • Wip (03ebe1cc)
  • Wip (33b00125)
  • Wip (f7bcb0fc)
  • Wip (cfb8d867)
  • Wip (6cb9ce34)
  • Wip (717fae16)
  • Wip (8208e074)
  • Wip (1dfc974f)
  • Wip (a1d0d38f)
  • Wip (f5111c7a)
  • Wip (9a754594)
  • Wip (22f97e36)
  • Wip (745a7d88)
  • Wip (e9b87676)
  • Wip (3cb31dcb)
  • Wip (34d34752)
  • Wip (f0a821da)
  • Wip (e185addb)
  • Wip (e32e30a7)
  • Wip (23d483ac)
  • Wip (c95e5a29)
  • Wip (3feedb84)
  • Wip (d5a2fbaf)
  • Wip (52d3aae7)
  • Wip (7588043f)
  • Wip (bbd7e590)
  • Wip (83dec51d)
  • Wip (8ff2c32b)
  • Wip (da2d2908)
  • Wip (a53f585f)
  • Wip (8ff54e6c)
  • Wip (6668828e)
  • Wip (2a46878c)
  • Wip (7ff520d7)
  • Wip (b0f2c000)
  • Wip (af25ca5b)
  • Wip (a2e36c88)
  • Wip (accb60f6)
  • Wip (b34ab220)
  • Wip (ecdbcb42)
  • Wip (3b19babf)
  • Wip (289a9d53)
  • Wip (1c1eedf2)
  • Wip (1d487ff2)
  • Wip (a74e38ce)
  • Wip (97bb68ad)
  • Wip (41947b9a)
  • Wip (08e482db)
  • Wip (ea5af290)
  • Wip (d2b4f0b0)
  • Wip (e7430b69)
  • Wip (947699a5)
  • Wip (5c44b898)
  • Wip (1937003c)
  • Wip (5676c95c)
  • Wip (c5a70204)
  • Wip (a6eea887)
  • Wip (4f96a0fa)
  • Wip (6763280b)
  • Wip (d3c01a80)
  • Wip (271806c1)
  • Wip (23353d3b)
  • Wip (e73ba3a3)
  • Wip (7cf6252e)
  • Wip (adad80cc)
  • Wip (4f7daff0)
  • Wip (b7311ed6)
  • Wip (d5e9d59c)
  • Wip (29252d53)
  • Wip (71fa89e3)
  • Wip (5b9958e7)
  • Wip (23967f4c)
  • Wip (50c14582)
  • Wip (16d55922)
  • Wip-cache (4fe37202)
  • Wip (fb13ee6e)
  • Wip (a2d58696)
  • Add cache paths (07e43470)
  • Wip (64427e45)
  • Wip (40dc8017)
  • Wip (a8e80416)
  • Wip (19bb8bb2)
  • Wip (8854b3f1)
  • Wip (b3de6f37)
  • Release v0.38.0 (40f2932e)
  • Wip (549d7371)
  • Release v0.38.1 (0cce9eee)
  • Wip (43e56864)
  • Release v0.38.2 (ba8cee04)
  • Wip (2339ce52)
  • Release v0.38.3 (719d180e)
  • Wip (93391022)
  • Vitests (3a600c15)
  • Add RedisClientType (f130cee1)
  • Wip (46df6210)
  • Wip (04ef206d)
  • Wip (8e08be2b)
  • Wip (aae94ac6)
  • Release v0.38.4 (5493110a)
  • Wip (be9759d1)
  • Wip (e8da71ed)
  • Wip (339bb178)
  • Wip (de52e9e0)
  • Wip (48c86a9f)
  • Wip (a5543c4e)
  • Wip (d57b81a6)
  • Wip (427c91af)
  • Wip (942fcc72)
  • Wip (1d246160)
  • Wip (1653f310)
  • Release v0.39.0 (4c34ea81)
  • Wip (c940492d)
  • Release v0.39.1 (b893bac2)
  • Cache dynamodb (2559829e)
  • Wip (5ddddf35)
  • Wip (734d43ad)
  • Wip (807e4582)
  • Wip (ee78b70d)
  • Wip (f12a6439)
  • Wip (23fb59ec)
  • Wip (4ec7493e)
  • Wip (da465bb9)
  • Wip (73cec3f4)
  • Wip (75f07123)
  • Wip (b8faafec)
  • Release v0.40.0 (1aa6fa48)
  • Wip (43a7bda6)
  • Wip (dde2fa07)
  • Wip (847b220c)
  • Wip (aac76aae)
  • Wip (8ab2ed71)
  • Wip (a20f5d75)
  • Wip (004500b6)
  • Wip (e7e5df68)
  • Wip (68d3ca4e)
  • Wip (cf2a1170)
  • Wip (12159b35)
  • Add search-engine package (146b687d)
  • Wip (5ad838b0)
  • Wip (01896676)
  • Wip (04d8cb32)
  • Release v0.41.0 (2c8b5f99)
  • Wip (9aaae6f6)
  • Wip (2d5c3472)
  • Release v0.41.1 (f8a93ad7)
  • Wip (a7628a5f)
  • Desktop engine package (4e4564fa)
  • Wip (d4dce1e7)
  • Wip (710fa58d)
  • Wip (9e0c2e52)
  • Wip (8dc63cfe)
  • Wip (98fbce33)
  • Wip (56dfd8e4)
  • Test cases (75ce8978)
  • Wip (22850522)
  • Wip (08d77c05)
  • Wip (74b5a9e1)
  • Wip (67763d53)
  • Wip (0a6dcce4)
  • Wip (af196624)
  • Wip (a0f2aa51)
  • Wip (463e105c)
  • Wip (9eacbcc0)
  • Wip (65c41b21)
  • Wip (4ff2310c)
  • Wip (d6957398)
  • Wip (bafb38b1)
  • Wip (c3cc7930)
  • Release v0.42.0 (0cbef3fb)
  • Wip (d451f50d)
  • Wip (3bf89fd6)
  • Wip (7cc24a2e)
  • Release v0.42.1 (c2f04776)
  • Wip (2a2fe763)
  • Wip (fa752ea2)
  • Release v0.42.2 (afa68af6)
  • Wip (c2af2d63)
  • Wip (d0ade0c0)
  • Wip (9712de3e)
  • Wip (653ed298)
  • Wip (218fdad5)
  • Wip (142d17f5)
  • Wip (fcc134a1)
  • Wip (1881bcc1)
  • Wip (1dee3732)
  • Setup memcache in test cases (00d13c16)
  • Wip (be89dec4)
  • Wip (b1a20503)
  • Wip (2e05a821)
  • Wip (0c181236)
  • Wip (5910b4d9)
  • Wip (5d1fcbb7)
  • Wip (305b7d2e)
  • Wip (0d16b50c)
  • Apply fixes from JS-CS-Fixer (656624f6)
  • Wip (90171dd6)
  • Wip (9b252c10)
  • Wip (cbc8b557)
  • Wip (68ed2f21)
  • Wip (04ab9bc3)
  • Wip (4ef68b90)
  • Wip (7369c670)
  • Wip (84857a6a)
  • Wip (e34d8035)
  • Wip (28067a7d)
  • Wip (0f16d933)
  • Wip (c10b6a7d)
  • Wip (33029a96)
  • Wip (1be44098)
  • Wip (dfe70920)
  • Wip (92520432)
  • Wip (7f940aac)
  • Wip (0453b06b)
  • Wip (793b5662)
  • Deps (6317d3d9)
  • Hide diagram (fb521271)
  • Wip (42c08bd8)
  • Wip (60fb492c)
  • Wip (2dfec4d2)
  • Wip (55012106)
  • Wip (a686cde1)
  • Wip (dd9a6ffe)
  • Release v0.43.0 (d4b26e8c)
  • Release v0.43.1 (db00514a)
  • Wip (faa43c75)
  • Wip (02e43097)
  • Wip (5ef720e1)
  • From "prefixs" to "prefixes" (9858594e)
  • Wip (23df0064)
  • Wip (7059a1b6)
  • Wip (8fc9b6e6)
  • Wip (df1d4b27)
  • Wip (36f2541e)
  • Wip (440377de)
  • Wip (10023cdd)
  • Wip (2bac7ef6)
  • Wip (8187bc22)
  • Wip (71711b94)
  • Wip (c36cb33d)
  • Wip (d9ddf668)
  • Wip (bf4df08b)
  • Wip (d310c090)
  • Wip (1b78271b)
  • Wip (ed2f7b1f)
  • Wip (46934e99)
  • Wip (7b8c950c)
  • Wip (e297ef68)
  • Wip (98840a6d)
  • Wip (c53fcdc2)
  • Wip (aad0e4b6)
  • Wip (0327e595)
  • Wip (a8b4f47f)
  • Wip (040461ec)
  • Wip (88ccf8c9)
  • Transfer x-ray to stacks (3e404378)
  • Wip (07e3d0e1)
  • Wip (37d52d14)
  • Wip (b7eafd44)
  • Wip (9ab70441)
  • Wip (974c1ff3)
  • Wip (00c5da58)
  • Remove vuetify (06c44576)
  • Wip (556ba424)
  • Wip (ec1c73d7)
  • Wip (b00c095a)
  • Wip (29791405)
  • Wip (950c96d3)
  • Wip (f7502b76)
  • Wip (e87cd263)
  • Wip (778f26a0)
  • Wip (064042bc)
  • Wip (810164e6)
  • Wip (ce1c08f0)
  • Wip (252a2b26)
  • Wip (bb2c4f9d)
  • Wip (0ecf20c0)
  • Wip (4c8d45bb)
  • Wip (b7334f1b)
  • Wip (e0f25152)
  • Wip (868a5781)
  • Wip (8df74406)
  • Wip (635e5144)
  • Wip (0dbe6161)
  • Wip (39e23cb2)
  • Wip (a8f1decf)
  • Wip (82301da2)
  • Wip (0a792a6f)
  • Wip (7c14873b)
  • Wip (6b9f7447)
  • Wip (11b1d617)
  • Wip (9ddc7400)
  • Wip (93bfc5c1)
  • Wip (48efab52)
  • Wip (56585a78)
  • Wip (4b61f28f)
  • Wip (e14e0eba)
  • Wip (8d17b90a)
  • Wip (c7be65b4)
  • Wip (d9d3c61b)
  • Wip (192dcb65)
  • Wip (f343addc)
  • Wip (fd1a9ea7)
  • Wip (29841289)
  • Wip (dbf86eee)
  • Wip (184d031d)
  • Wip (49cc9c6c)
  • Wip (d694c075)
  • Wip (9e55b03d)
  • Wip (697a950c)
  • Wip (dfb22c62)
  • Wip (d17aeecd)
  • Wip (0d91d999)
  • Wip (2271b06b)
  • Wip (96f619d5)
  • Release v0.44.0 (4997abdc)
  • Wip (2aaadf6f)
  • Release v0.44.1 (ec988e04)
  • Wip (925b55ee)
  • Wip (e7c4cac7)
  • Wip (4b385e6d)
  • Release v0.44.2 (fa83b2b4)
  • Wip (e5dcd719)
  • Wip (453bd7ec)
  • Release v0.44.3 (402203e3)
  • Wip (a0a4351e)
  • Release v0.44.4 (3e57a724)
  • Wip (543bdac2)
  • Wip (a72ea5e7)
  • Release v0.44.5 (037eb578)
  • Wip (86c414fa)
  • Release v0.44.6 (86d60f3a)
  • Wip (64581571)
  • Release v0.44.7 (b35f6e24)
  • Wip (44cfafb4)
  • Release v0.44.8 (e7a63162)
  • Wip (be0960ad)
  • Release v0.44.9 (c89d475a)
  • Wip (521421ae)
  • Release v0.44.10 (d722c4ea)
  • Wip (4104649a)
  • Wip (302c0afc)
  • Release v0.44.11 (e7b71bf4)
  • Wip (7fce3876)
  • Wip (5936d549)
  • Wip (01040470)
  • Wip (f5933eb8)
  • Wip (195fb2ab)
  • Wip (fd8b730b)
  • Wip (918d0aca)
  • Wip (15a69f2d)
  • Wip (21a3a17f)
  • Wip (9df17c29)
  • Wip (446b4be3)
  • Wip (b86080d4)
  • Wip (317eadd6)
  • Wip (4bb6ba83)
  • Wip (5e990f90)
  • Wip (33d3fd50)
  • Wip (d76dd826)
  • Wip (44f16724)
  • Wip (8c6db7cb)
  • Wip (5d9e13f2)
  • Release v0.44.12 (ec34f036)
  • Wip (634c0e11)
  • Wip (a1a73f28)
  • Wip (6ac13e11)
  • Wip (4c9e1f57)
  • Wip (dd1ec22e)
  • Wip (3df19118)
  • Wip (3bd55637)
  • Wip (a850bd0d)
  • Wip (dfa4602a)
  • Wip (a3ea5335)
  • Wip (a5dcaef8)
  • Wip (e2497ba7)
  • Wip (a3f55769)
  • Wip (add4db59)
  • Wip (cfafe181)
  • Wip (23d014e4)
  • Wip (01d410c6)
  • Wip (85dd8057)
  • Release v0.45.0 (a2a782ed)
  • Wip (043b4536)
  • Release v0.45.1 (77700824)
  • Wip (3c42f5c8)
  • Wip (db17c5bb)
  • Wip (1f9dcbf4)
  • Release v0.45.2 (44ca9578)

🤖 CI

  • Add pnpm install back in (29ff1bbb)

❤️ Contributors