Skip to content

Commit 5bf3b62

Browse files
authored
Version Packages (#26)
1 parent c4bedd5 commit 5bf3b62

File tree

16 files changed

+79
-48
lines changed

16 files changed

+79
-48
lines changed

.changeset/honest-walls-type.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changeset/hungry-tigers-matter.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/plenty-chefs-check.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/soft-goats-admire.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

fixtures/low-level/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"author": "SEEK",
66
"private": true,
77
"dependencies": {
8-
"@vanilla-extract/css": "0.1.0"
8+
"@vanilla-extract/css": "0.2.0"
99
}
1010
}

fixtures/themed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "SEEK",
77
"private": true,
88
"dependencies": {
9-
"@vanilla-extract/css": "0.1.0",
9+
"@vanilla-extract/css": "0.2.0",
1010
"@vanilla-extract/dynamic": "0.1.0"
1111
}
1212
}

fixtures/unused-modules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"author": "SEEK",
99
"private": true,
1010
"dependencies": {
11-
"@vanilla-extract/css": "0.1.0"
11+
"@vanilla-extract/css": "0.2.0"
1212
}
1313
}

packages/babel-plugin/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# @vanilla-extract/babel-plugin
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#20](https://github.com/seek-oss/vanilla-extract/pull/20) [`3311914`](https://github.com/seek-oss/vanilla-extract/commit/3311914d92406cda5d5bb71ee72075501f868bd5) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Ensure generated hashes are scoped by package
8+
9+
vanilla-extract uses file path to ensure unique identifier (e.g. class names, CSS Variables, keyframes, etc) hashes across your application. This information is added to your `*.css.ts` files at build time. The issue with this approach is it meant `*.css.ts` files couldn't be pre-compiled when being published to npm.
10+
11+
This change adds support for pre-compilation of packages by adding package name information to identifier hashes.
12+
13+
* [#20](https://github.com/seek-oss/vanilla-extract/pull/20) [`3311914`](https://github.com/seek-oss/vanilla-extract/commit/3311914d92406cda5d5bb71ee72075501f868bd5) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Remove `projectRoot` and `alias` option
14+
315
## 0.1.0
16+
417
### Minor Changes
518

619
- e83ad50: Initial release

packages/babel-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/babel-plugin",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-babel-plugin.cjs.js",
66
"module": "dist/vanilla-extract-babel-plugin.esm.js",

packages/css/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# @vanilla-extract/css
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#20](https://github.com/seek-oss/vanilla-extract/pull/20) [`3311914`](https://github.com/seek-oss/vanilla-extract/commit/3311914d92406cda5d5bb71ee72075501f868bd5) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Ensure generated hashes are scoped by package
8+
9+
vanilla-extract uses file path to ensure unique identifier (e.g. class names, CSS Variables, keyframes, etc) hashes across your application. This information is added to your `*.css.ts` files at build time. The issue with this approach is it meant `*.css.ts` files couldn't be pre-compiled when being published to npm.
10+
11+
This change adds support for pre-compilation of packages by adding package name information to identifier hashes.
12+
13+
* [#25](https://github.com/seek-oss/vanilla-extract/pull/25) [`c4bedd5`](https://github.com/seek-oss/vanilla-extract/commit/c4bedd571f0c21291b58e050589b4db9465c0460) Thanks [@markdalgleish](https://github.com/markdalgleish)! - The `createInlineTheme` function has now moved to the `@vanilla-extract/dynamic` package.
14+
15+
```diff
16+
-import { createInlineTheme } from '@vanilla-extract/css/createInlineTheme';
17+
+import { createInlineTheme } from '@vanilla-extract/dynamic';
18+
```
19+
320
## 0.1.0
21+
422
### Minor Changes
523

624
- e83ad50: Initial release

0 commit comments

Comments
 (0)