Skip to content

Commit

Permalink
Version Packages (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci authored Apr 22, 2021
1 parent 156b491 commit e0ed6c9
Show file tree
Hide file tree
Showing 15 changed files with 73 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/small-guests-film.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/spicy-panthers-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-scissors-beg.md

This file was deleted.

2 changes: 1 addition & 1 deletion fixtures/low-level/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"author": "SEEK",
"private": true,
"dependencies": {
"@vanilla-extract/css": "0.2.0"
"@vanilla-extract/css": "0.3.0"
}
}
2 changes: 1 addition & 1 deletion fixtures/themed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "SEEK",
"private": true,
"dependencies": {
"@vanilla-extract/css": "0.2.0",
"@vanilla-extract/css": "0.3.0",
"@vanilla-extract/dynamic": "0.1.0"
}
}
2 changes: 1 addition & 1 deletion fixtures/unused-modules/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"author": "SEEK",
"private": true,
"dependencies": {
"@vanilla-extract/css": "0.2.0"
"@vanilla-extract/css": "0.3.0"
}
}
19 changes: 19 additions & 0 deletions packages/babel-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @vanilla-extract/babel-plugin

## 0.3.0

### Minor Changes

- [#37](https://github.com/seek-oss/vanilla-extract/pull/37) [`ae9864c`](https://github.com/seek-oss/vanilla-extract/commit/ae9864c727c2edd0d415b77f738a3c959c98fca6) Thanks [@markdalgleish](https://github.com/markdalgleish)! - Rename `mapToStyles` to `styleVariants`

**BREAKING CHANGE**

```diff
-import { mapToStyles } from '@vanilla-extract/css';
+import { styleVariants } from '@vanilla-extract/css';

-export const variant = mapToStyles({
+export const variant = styleVariants({
primary: { background: 'blue' },
secondary: { background: 'aqua' },
});
```

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vanilla-extract/babel-plugin",
"version": "0.2.1",
"version": "0.3.0",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"main": "dist/vanilla-extract-babel-plugin.cjs.js",
"module": "dist/vanilla-extract-babel-plugin.esm.js",
Expand Down
25 changes: 25 additions & 0 deletions packages/css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @vanilla-extract/css

## 0.3.0

### Minor Changes

- [#38](https://github.com/seek-oss/vanilla-extract/pull/38) [`156b491`](https://github.com/seek-oss/vanilla-extract/commit/156b49182367bf233564eae7fd3ea9d3f50fd68a) Thanks [@markdalgleish](https://github.com/markdalgleish)! - Add `composeStyles` function

* [#37](https://github.com/seek-oss/vanilla-extract/pull/37) [`ae9864c`](https://github.com/seek-oss/vanilla-extract/commit/ae9864c727c2edd0d415b77f738a3c959c98fca6) Thanks [@markdalgleish](https://github.com/markdalgleish)! - Rename `mapToStyles` to `styleVariants`

**BREAKING CHANGE**

```diff
-import { mapToStyles } from '@vanilla-extract/css';
+import { styleVariants } from '@vanilla-extract/css';

-export const variant = mapToStyles({
+export const variant = styleVariants({
primary: { background: 'blue' },
secondary: { background: 'aqua' },
});
```

### Patch Changes

- [#34](https://github.com/seek-oss/vanilla-extract/pull/34) [`756d9b0`](https://github.com/seek-oss/vanilla-extract/commit/756d9b0d0305e8b8a63f0ca1ebe635ab320a5f5b) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Reduce CSS var and identifier lengths

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vanilla-extract/css",
"version": "0.2.0",
"version": "0.3.0",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"sideEffects": true,
"main": "dist/vanilla-extract-css.cjs.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/esbuild-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @vanilla-extract/esbuild-plugin

## 0.1.2

### Patch Changes

- Updated dependencies [[`156b491`](https://github.com/seek-oss/vanilla-extract/commit/156b49182367bf233564eae7fd3ea9d3f50fd68a), [`ae9864c`](https://github.com/seek-oss/vanilla-extract/commit/ae9864c727c2edd0d415b77f738a3c959c98fca6), [`756d9b0`](https://github.com/seek-oss/vanilla-extract/commit/756d9b0d0305e8b8a63f0ca1ebe635ab320a5f5b)]:
- @vanilla-extract/css@0.3.0

## 0.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/esbuild-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vanilla-extract/esbuild-plugin",
"version": "0.1.1",
"version": "0.1.2",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"main": "dist/vanilla-extract-esbuild-plugin.cjs.js",
"module": "dist/vanilla-extract-esbuild-plugin.esm.js",
Expand All @@ -18,7 +18,7 @@
"esbuild": ">=0.11.1"
},
"dependencies": {
"@vanilla-extract/css": "^0.2.0",
"@vanilla-extract/css": "^0.3.0",
"chalk": "^4.1.0",
"dedent": "^0.7.0",
"eval": "^0.1.6",
Expand Down
7 changes: 7 additions & 0 deletions packages/webpack-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @vanilla-extract/webpack-plugin

## 0.2.1

### Patch Changes

- Updated dependencies [[`156b491`](https://github.com/seek-oss/vanilla-extract/commit/156b49182367bf233564eae7fd3ea9d3f50fd68a), [`ae9864c`](https://github.com/seek-oss/vanilla-extract/commit/ae9864c727c2edd0d415b77f738a3c959c98fca6), [`756d9b0`](https://github.com/seek-oss/vanilla-extract/commit/756d9b0d0305e8b8a63f0ca1ebe635ab320a5f5b)]:
- @vanilla-extract/css@0.3.0

## 0.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vanilla-extract/webpack-plugin",
"version": "0.2.0",
"version": "0.2.1",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"main": "dist/vanilla-extract-webpack-plugin.cjs.js",
"module": "dist/vanilla-extract-webpack-plugin.esm.js",
Expand Down Expand Up @@ -29,7 +29,7 @@
"webpack": "^4.30.0 || ^5.20.2"
},
"dependencies": {
"@vanilla-extract/css": "^0.2.0",
"@vanilla-extract/css": "^0.3.0",
"chalk": "^4.1.0",
"debug": "^4.3.1",
"dedent": "^0.7.0",
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1572,15 +1572,15 @@ __metadata:
version: 0.0.0-use.local
resolution: "@fixtures/low-level@workspace:fixtures/low-level"
dependencies:
"@vanilla-extract/css": 0.2.0
"@vanilla-extract/css": 0.3.0
languageName: unknown
linkType: soft

"@fixtures/themed@workspace:fixtures/themed":
version: 0.0.0-use.local
resolution: "@fixtures/themed@workspace:fixtures/themed"
dependencies:
"@vanilla-extract/css": 0.2.0
"@vanilla-extract/css": 0.3.0
"@vanilla-extract/dynamic": 0.1.0
languageName: unknown
linkType: soft
Expand All @@ -1589,7 +1589,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@fixtures/unused-modules@workspace:fixtures/unused-modules"
dependencies:
"@vanilla-extract/css": 0.2.0
"@vanilla-extract/css": 0.3.0
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -2685,7 +2685,7 @@ __metadata:
languageName: unknown
linkType: soft

"@vanilla-extract/css@0.2.0, @vanilla-extract/css@^0.2.0, @vanilla-extract/css@workspace:packages/css":
"@vanilla-extract/css@0.3.0, @vanilla-extract/css@^0.3.0, @vanilla-extract/css@workspace:packages/css":
version: 0.0.0-use.local
resolution: "@vanilla-extract/css@workspace:packages/css"
dependencies:
Expand Down Expand Up @@ -2713,7 +2713,7 @@ __metadata:
resolution: "@vanilla-extract/esbuild-plugin@workspace:packages/esbuild-plugin"
dependencies:
"@types/dedent": ^0.7.0
"@vanilla-extract/css": ^0.2.0
"@vanilla-extract/css": ^0.3.0
chalk: ^4.1.0
dedent: ^0.7.0
esbuild: ^0.11.1
Expand All @@ -2739,7 +2739,7 @@ __metadata:
"@types/debug": ^4.1.5
"@types/dedent": ^0.7.0
"@types/lodash": ^4.14.168
"@vanilla-extract/css": ^0.2.0
"@vanilla-extract/css": ^0.3.0
chalk: ^4.1.0
debug: ^4.3.1
dedent: ^0.7.0
Expand Down

0 comments on commit e0ed6c9

Please sign in to comment.