Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release v42 #737

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file. See [standa

---

## [v42](https://github.com/live-codes/livecodes/compare/sdk-v0.8.0...0.0.0) (2025-02-01)

### Highlights for this release

This release adds support for Tailwind CSS v4, while maintaining backward compatibility for v3.

Projects using the old Tailwind CSS directives (e.g. `@tailwind base; @tailwind components; @tailwind utilities;`) will use v3.
To upgrade to v4 replace the directives with the new import statement `@import "tailwindcss";` or simply remove the directives.

The [Tailwind CSS starter template](https://livecodes.io/?template=tailwindcss) was upgraded to use v4.

In addition Monaco editor intellisense for Tailwind CSS was added: autocomplete, hover for generated css, color preview, etc.

### Features

- **Compilers:** add support for tailwindcss v4 ([cc90203](https://github.com/live-codes/livecodes/commit/cc90203d62fea59bc53a02bf004963556c7c545c))
- **Editor:** add support for tailwindcss in monaco editor ([c7f166b](https://github.com/live-codes/livecodes/commit/c7f166b9672cf138b77f9908bcbc9d4419f42e29))
- **Templates:** upgrade tailwindcss starter template to v4 ([84b32f3](https://github.com/live-codes/livecodes/commit/84b32f3ca692a322cf52a789babff9d97175cb2b))

### Bug Fixes

- **CommandMenu:** allow other shortcut combinations to use ctrl+k ([2e026d0](https://github.com/live-codes/livecodes/commit/2e026d03ad6db14f86ca3a74a153f2d0f9d24e72))
- reset editor titles in shared URLs ([297cd29](https://github.com/live-codes/livecodes/commit/297cd29d8dfb2c1b706adbc5dd1e0348bf58be2a))

---

## [v41](https://github.com/live-codes/livecodes/compare/v40...v41) (2025-01-25)

This release fixes invalid cache for codemirror build and simplifies the build process.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "livecodes",
"version": "0.0.0",
"appVersion": "41",
"appVersion": "42",
"description": "Code Playground That Just Works!",
"author": "Hatem Hosny",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/livecodes/vendors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { modulesService } from './services/modules';
const { getUrl, getModuleUrl } = modulesService;

export const vendorsBaseUrl = // 'http://127.0.0.1:8081/';
/* @__PURE__ */ getUrl('@live-codes/[email protected].0/dist/');
/* @__PURE__ */ getUrl('@live-codes/[email protected].1/dist/');

export const acornUrl = /* @__PURE__ */ getUrl('[email protected]/dist/acorn.js');

Expand Down
Loading