Skip to content

Commit

Permalink
Merge pull request #59 from natemoo-re/changeset-release/main
Browse files Browse the repository at this point in the history
[ci] release
  • Loading branch information
natemoo-re authored Sep 11, 2023
2 parents 2657c5e + 725373d commit 100a986
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
17 changes: 0 additions & 17 deletions .changeset/beige-boats-float.md

This file was deleted.

18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# ultrahtml

## 1.5.0

### Minor Changes

- 7c93190: Add support for static media queries to `ultrahtml/transformers/inline`.

You may now pass an `env` value to the transformer, for example:

```js
import { transform } from "ultrahtml";
import inline from "ultrahtml/transformers/inline";

const output = await transform(input, [
// Acts as if the screen is 960px wide and 1280px tall
inline({ env: { width: 960, height: 1280 } })
]);
```

## 1.4.0

### Minor Changes
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": "ultrahtml",
"type": "module",
"version": "1.4.0",
"version": "1.5.0",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"repository": {
Expand Down

0 comments on commit 100a986

Please sign in to comment.