Skip to content

Commit fce9695

Browse files
Version Packages (#97)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 697a233 commit fce9695

File tree

12 files changed

+39
-35
lines changed

12 files changed

+39
-35
lines changed

.changeset/perfect-pens-perform.md

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

.changeset/spicy-deers-agree.md

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

examples/webpack-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@babel/preset-react": "^7.13.13",
2424
"@babel/preset-typescript": "^7.13.0",
2525
"@vanilla-extract/babel-plugin": "^0.4.0",
26-
"@vanilla-extract/css": "0.4.2",
26+
"@vanilla-extract/css": "0.4.3",
2727
"@vanilla-extract/sprinkles": "^0.2.0",
2828
"@vanilla-extract/webpack-plugin": "^0.3.0",
2929
"babel-loader": "^8.2.2",

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.4.2"
8+
"@vanilla-extract/css": "0.4.3"
99
}
1010
}

fixtures/sprinkles/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.4.2",
9+
"@vanilla-extract/css": "0.4.3",
1010
"@vanilla-extract/sprinkles": "0.2.0"
1111
}
1212
}

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.4.2",
9+
"@vanilla-extract/css": "0.4.3",
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.4.2"
11+
"@vanilla-extract/css": "0.4.3"
1212
}
1313
}

packages/css/CHANGELOG.md

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

3+
## 0.4.3
4+
5+
### Patch Changes
6+
7+
- [#95](https://github.com/seek-oss/vanilla-extract/pull/95) [`f9ca82b`](https://github.com/seek-oss/vanilla-extract/commit/f9ca82b908b720785df271ed18d7abe048191759) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Fix fallbackVar type defintion
8+
39
## 0.4.2
410

511
### Patch Changes

packages/css/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/css",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"sideEffects": true,
66
"main": "dist/vanilla-extract-css.cjs.js",

packages/vite-plugin/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# @vanilla-extract/vite-plugin
2+
3+
## 0.1.1
4+
### Patch Changes
5+
6+
7+
8+
- [#96](https://github.com/seek-oss/vanilla-extract/pull/96) [`697a233`](https://github.com/seek-oss/vanilla-extract/commit/697a2332cdb34886af26224c13f1efb73b6d36b3) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Change vite-plugin to be a named export
9+
10+
BREAKING CHANGE
11+
12+
```diff
13+
-import vanillaExtractPlugin from '@vanilla-extract/vite-plugin';
14+
+import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
15+
16+
// vite.config.js
17+
export default {
18+
plugins: [vanillaExtractPlugin()]
19+
}
20+
```

0 commit comments

Comments
 (0)