Skip to content

Commit 2ac5a6b

Browse files
Version Packages (#1594)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 98e922b commit 2ac5a6b

File tree

6 files changed

+29
-24
lines changed

6 files changed

+29
-24
lines changed

.changeset/kind-chicken-battle.md

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

.changeset/wet-swans-rush.md

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

packages/compiler/CHANGELOG.md

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

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#1592](https://github.com/vanilla-extract-css/vanilla-extract/pull/1592) [`35d6b3f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/35d6b3fe5d297dc76f1629a9f54f21d0f97e7c9f) Thanks [@askoufis](https://github.com/askoufis)! - `createCompiler`: Add `enableFileWatcher` option
8+
9+
By default, the compiler sets up its own file watcher.
10+
This option allows you to disable it if necessary, such as during a production build.
11+
12+
**EXAMPLE USAGE**:
13+
14+
```ts
15+
const compiler = createCompiler({
16+
root: process.cwd(),
17+
enableFileWatcher: false
18+
});
19+
```
20+
321
## 0.1.3
422

523
### Patch Changes

packages/compiler/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/compiler",
3-
"version": "0.1.3",
3+
"version": "0.2.0",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-compiler.cjs.js",
66
"module": "dist/vanilla-extract-compiler.esm.js",

packages/vite-plugin/CHANGELOG.md

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

3+
## 5.0.3
4+
5+
### Patch Changes
6+
7+
- [#1592](https://github.com/vanilla-extract-css/vanilla-extract/pull/1592) [`35d6b3f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/35d6b3fe5d297dc76f1629a9f54f21d0f97e7c9f) Thanks [@askoufis](https://github.com/askoufis)! - Disable the compiler's file watcher during builds
8+
9+
- Updated dependencies [[`35d6b3f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/35d6b3fe5d297dc76f1629a9f54f21d0f97e7c9f)]:
10+
- @vanilla-extract/compiler@0.2.0
11+
312
## 5.0.2
413

514
### Patch Changes

packages/vite-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/vite-plugin",
3-
"version": "5.0.2",
3+
"version": "5.0.3",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-vite-plugin.cjs.js",
66
"module": "dist/vanilla-extract-vite-plugin.esm.js",

0 commit comments

Comments
 (0)