Skip to content

Commit

Permalink
Version Packages (#120)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] authored May 12, 2021
1 parent 72f7226 commit ad24282
Show file tree
Hide file tree
Showing 16 changed files with 47 additions and 46 deletions.
5 changes: 0 additions & 5 deletions .changeset/blue-snakes-breathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-weeks-serve.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/slimy-terms-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-teachers-warn.md

This file was deleted.

4 changes: 2 additions & 2 deletions examples/webpack-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@vanilla-extract/babel-plugin": "^0.4.0",
"@vanilla-extract/css": "0.4.3",
"@vanilla-extract/babel-plugin": "^0.4.1",
"@vanilla-extract/css": "0.4.4",
"@vanilla-extract/sprinkles": "^0.2.2",
"@vanilla-extract/webpack-plugin": "^0.3.0",
"babel-loader": "^8.2.2",
Expand Down
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.4.3"
"@vanilla-extract/css": "0.4.4"
}
}
2 changes: 1 addition & 1 deletion fixtures/sprinkles/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.4.3",
"@vanilla-extract/css": "0.4.4",
"@vanilla-extract/sprinkles": "0.2.2"
}
}
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.4.3",
"@vanilla-extract/css": "0.4.4",
"@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.4.3"
"@vanilla-extract/css": "0.4.4"
}
}
8 changes: 8 additions & 0 deletions packages/babel-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @vanilla-extract/babel-plugin

## 0.4.1

### Patch Changes

- [#123](https://github.com/seek-oss/vanilla-extract/pull/123) [`72f7226`](https://github.com/seek-oss/vanilla-extract/commit/72f722674d49a5128df61045689c7a231b9f9cee) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Ignore commonjs files that already have filescope information

* [#123](https://github.com/seek-oss/vanilla-extract/pull/123) [`72f7226`](https://github.com/seek-oss/vanilla-extract/commit/72f722674d49a5128df61045689c7a231b9f9cee) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Use correct import style (ESM or CJS) when adding filescope information

## 0.4.0

### Minor 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.4.0",
"version": "0.4.1",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"main": "dist/vanilla-extract-babel-plugin.cjs.js",
"module": "dist/vanilla-extract-babel-plugin.esm.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @vanilla-extract/css

## 0.4.4

### Patch Changes

- [#121](https://github.com/seek-oss/vanilla-extract/pull/121) [`823478b`](https://github.com/seek-oss/vanilla-extract/commit/823478b942e91a7b371743651cf1dc35823be98a) Thanks [@Brendan-csel](https://github.com/Brendan-csel)! - Fix development identifiers for Windows paths

## 0.4.3

### Patch 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.4.3",
"version": "0.4.4",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"sideEffects": true,
"main": "dist/vanilla-extract-css.cjs.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# @vanilla-extract/css-utils

## 0.1.1

### Patch Changes

- [#119](https://github.com/seek-oss/vanilla-extract/pull/119) [`8e67bdd`](https://github.com/seek-oss/vanilla-extract/commit/8e67bdd4bd5fcb541da354f674365bac13d8373c) Thanks [@michaeltaranto](https://github.com/michaeltaranto)! - Add support for calc nesting

Previously passing a calc to any of the operator methods was not supported without first being stringified. This is now handled internally.

E.g.

```diff
- calc('10px').add(calc('20px').subtract('4px').toString())
+ calc('10px').add(calc('20px').subtract('4px'))
```

## 0.1.0

### Minor Changes

- e83ad50: Initial release
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vanilla-extract/css-utils",
"version": "0.1.0",
"version": "0.1.1",
"description": "Zero-runtime Stylesheets-in-TypeScript",
"sideEffects": false,
"main": "dist/vanilla-extract-css-utils.cjs.js",
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1755,15 +1755,15 @@ __metadata:
version: 0.0.0-use.local
resolution: "@fixtures/low-level@workspace:fixtures/low-level"
dependencies:
"@vanilla-extract/css": 0.4.3
"@vanilla-extract/css": 0.4.4
languageName: unknown
linkType: soft

"@fixtures/sprinkles@workspace:fixtures/sprinkles":
version: 0.0.0-use.local
resolution: "@fixtures/sprinkles@workspace:fixtures/sprinkles"
dependencies:
"@vanilla-extract/css": 0.4.3
"@vanilla-extract/css": 0.4.4
"@vanilla-extract/sprinkles": 0.2.2
languageName: unknown
linkType: soft
Expand All @@ -1772,7 +1772,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@fixtures/themed@workspace:fixtures/themed"
dependencies:
"@vanilla-extract/css": 0.4.3
"@vanilla-extract/css": 0.4.4
"@vanilla-extract/dynamic": 0.1.0
languageName: unknown
linkType: soft
Expand All @@ -1781,7 +1781,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@fixtures/unused-modules@workspace:fixtures/unused-modules"
dependencies:
"@vanilla-extract/css": 0.4.3
"@vanilla-extract/css": 0.4.4
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -3092,7 +3092,7 @@ __metadata:
languageName: node
linkType: hard

"@vanilla-extract/babel-plugin@^0.4.0, @vanilla-extract/babel-plugin@workspace:packages/babel-plugin":
"@vanilla-extract/babel-plugin@^0.4.1, @vanilla-extract/babel-plugin@workspace:packages/babel-plugin":
version: 0.0.0-use.local
resolution: "@vanilla-extract/babel-plugin@workspace:packages/babel-plugin"
dependencies:
Expand All @@ -3108,7 +3108,7 @@ __metadata:
languageName: unknown
linkType: soft

"@vanilla-extract/css@*, @vanilla-extract/css@0.4.3, @vanilla-extract/css@^0.4.0, @vanilla-extract/css@workspace:packages/css":
"@vanilla-extract/css@*, @vanilla-extract/css@0.4.4, @vanilla-extract/css@^0.4.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 @@ -14397,8 +14397,8 @@ typescript@^4.1.3:
"@types/react": ^17
"@types/react-dom": ^17
"@types/tailwindcss": ^2
"@vanilla-extract/babel-plugin": ^0.4.0
"@vanilla-extract/css": 0.4.3
"@vanilla-extract/babel-plugin": ^0.4.1
"@vanilla-extract/css": 0.4.4
"@vanilla-extract/sprinkles": ^0.2.2
"@vanilla-extract/webpack-plugin": ^0.3.0
babel-loader: ^8.2.2
Expand Down

0 comments on commit ad24282

Please sign in to comment.