Skip to content

Commit 77bb051

Browse files
authored
Update repo and secret references (#848)
1 parent 2b60080 commit 77bb051

File tree

50 files changed

+466
-471
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+466
-471
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
33
"changelog": [
44
"@changesets/changelog-github",
5-
{ "repo": "seek-oss/vanilla-extract" }
5+
{ "repo": "vanilla-extract-css/vanilla-extract" }
66
],
77
"commit": false,
88
"linked": [],

.github/CODEOWNERS

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
- type: markdown
66
attributes:
77
value: |
8-
Please note issues should only be used for actual issues. Any feature requests or general feedback should be raised in Github Discussions (https://github.com/seek-oss/vanilla-extract/discussions) or Discord (https://discord.gg/6nCfPwwz6w)
8+
Please note issues should only be used for actual issues. Any feature requests or general feedback should be raised in Github Discussions (https://github.com/vanilla-extract-css/vanilla-extract/discussions) or Discord (https://discord.gg/6nCfPwwz6w)
99
- type: textarea
1010
id: bug-description
1111
attributes:
@@ -55,7 +55,7 @@ body:
5555
label: Validations
5656
description: Before submitting the issue, please make sure you do the following
5757
options:
58-
- label: Check that there isn't [already an issue](https://github.com/seek-oss/vanilla-extract/issues) that reports the same bug to avoid creating a duplicate.
58+
- label: Check that there isn't [already an issue](https://github.com/vanilla-extract-css/vanilla-extract/issues) that reports the same bug to avoid creating a duplicate.
5959
required: true
6060
- label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
6161
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Feature requests, Questions & Discussions
4-
url: https://github.com/seek-oss/vanilla-extract/discussions
4+
url: https://github.com/vanilla-extract-css/vanilla-extract/discussions
55
about: Use GitHub discussions for message-board style questions and discussions
66
- name: Discord Chat
77
url: https://discord.gg/6nCfPwwz6w

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@main
1717
with:
1818
fetch-depth: 0
19-
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
19+
token: ${{ secrets.VANILLA_EXTRACT_CI_GITHUB_TOKEN }}
2020

2121
- uses: pnpm/[email protected]
2222

@@ -35,5 +35,5 @@ jobs:
3535
version: pnpm run version
3636
publish: pnpm release
3737
env:
38-
GITHUB_TOKEN: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
39-
NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }}
38+
GITHUB_TOKEN: ${{ secrets.VANILLA_EXTRACT_CI_GITHUB_TOKEN }}
39+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1616
fetch-depth: 0
17-
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
17+
token: ${{ secrets.VANILLA_EXTRACT_CI_GITHUB_TOKEN }}
1818

1919
- uses: pnpm/[email protected]
2020

@@ -32,5 +32,5 @@ jobs:
3232
with:
3333
pre-publish: pnpm prepare-release
3434
env:
35-
NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }}
35+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Basically, it’s [“CSS Modules](https://github.com/css-modules/css-modules)-i
3434

3535
---
3636

37-
🖥   [Try it out for yourself in CodeSandbox.](https://codesandbox.io/s/github/seek-oss/vanilla-extract/tree/master/examples/webpack-react?file=/src/App.css.ts)
37+
🖥   [Try it out for yourself in CodeSandbox.](https://codesandbox.io/s/github/vanilla-extract-css/vanilla-extract/tree/master/examples/webpack-react?file=/src/App.css.ts)
3838

3939
---
4040

docs/treat-migration-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This wasn't possible in treat with `*.treat.ts` files. If you've had to work aro
2222

2323
In treat, we automatically handled all generated CSS files for you. With vanilla-extract we've taken a more lightweight approach. Instead, we generate regular global CSS files and assume you've configured webpack to handle this. This makes things a lot simpler, but also a lot more configurable.
2424

25-
For more detail, check out the [webpack setup guide.](https://github.com/seek-oss/vanilla-extract#webpack)
25+
For more detail, check out the [webpack setup guide.](https://github.com/vanilla-extract-css/vanilla-extract#webpack)
2626

2727
## Autoprefixer is no longer included
2828

@@ -81,7 +81,7 @@ export const vars = createGlobalTheme(':root', {
8181
});
8282
```
8383

84-
If you have multiple themes, or if you want to avoid the global scope, use the [`createTheme`](https://github.com/seek-oss/vanilla-extract#createtheme) function instead.
84+
If you have multiple themes, or if you want to avoid the global scope, use the [`createTheme`](https://github.com/vanilla-extract-css/vanilla-extract#createtheme) function instead.
8585

8686
```ts
8787
// vars.css.ts
@@ -97,7 +97,7 @@ export const themeB = createTheme(vars, {
9797
});
9898
```
9999

100-
If you're bundle-splitting your themes, you'll probably want the [`createThemeContract`](https://github.com/seek-oss/vanilla-extract#createthemecontract) function.
100+
If you're bundle-splitting your themes, you'll probably want the [`createThemeContract`](https://github.com/vanilla-extract-css/vanilla-extract#createthemecontract) function.
101101

102102
## `TreatProvider`
103103

@@ -251,7 +251,7 @@ Note that this means the theme is no longer global! You don't need to worry abou
251251
252252
Theme variables are now opaque CSS Variables (i.e. `"var(--g7vce91)"`) rather than actual token values that differ per theme, which means you can't perform JavaScript calculations on them.
253253

254-
Simple calculations (addition, subtraction, multiplication, division) are covered by CSS's `calc` function. To make this a bit easier in TypeScript, we provide a [`calc`](https://github.com/seek-oss/vanilla-extract#calc) function in the `@vanilla-extract/css-utils` package.
254+
Simple calculations (addition, subtraction, multiplication, division) are covered by CSS's `calc` function. To make this a bit easier in TypeScript, we provide a [`calc`](https://github.com/vanilla-extract-css/vanilla-extract#calc) function in the `@vanilla-extract/css-utils` package.
255255

256256
```diff
257257
-import { style } from 'treat';
@@ -318,7 +318,7 @@ You would then update your styles to use this new CSS Variable instead.
318318

319319
## `styleMap`
320320

321-
You can use [`styleVariants`](https://github.com/seek-oss/vanilla-extract#stylevariants) as a drop-in replacement. Note that it now accepts a map function as the second argument, so there may be some opportunities to simplify your code if you were mapping over objects before passing them to `styleMap`.
321+
You can use [`styleVariants`](https://github.com/vanilla-extract-css/vanilla-extract#stylevariants) as a drop-in replacement. Note that it now accepts a map function as the second argument, so there may be some opportunities to simplify your code if you were mapping over objects before passing them to `styleMap`.
322322

323323
## `styleTree`
324324

@@ -346,4 +346,4 @@ The `@keyframes` property is no longer supported on style objects. Instead, you
346346

347347
## Did we forget anything?
348348

349-
[Please let us know.](https://github.com/seek-oss/vanilla-extract/issues/new)
349+
[Please let us know.](https://github.com/vanilla-extract-css/vanilla-extract/issues/new)

examples/webpack-react/CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,45 @@
44

55
### Patch Changes
66

7-
- Updated dependencies [[`9cfb9a1`](https://github.com/seek-oss/vanilla-extract/commit/9cfb9a196fb84bd9d7984c1370488fd68e7ea1d0), [`9191d5a`](https://github.com/seek-oss/vanilla-extract/commit/9191d5adcdd4d129affdf5482659120e03a3d003), [`b53558a`](https://github.com/seek-oss/vanilla-extract/commit/b53558a3872987282b23d62b0063e4d789a379f9)]:
7+
- Updated dependencies [[`9cfb9a1`](https://github.com/vanilla-extract-css/vanilla-extract/commit/9cfb9a196fb84bd9d7984c1370488fd68e7ea1d0), [`9191d5a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/9191d5adcdd4d129affdf5482659120e03a3d003), [`b53558a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b53558a3872987282b23d62b0063e4d789a379f9)]:
88
- @vanilla-extract/webpack-plugin@2.2.0
99
- @vanilla-extract/css@1.9.1
1010

1111
## 0.0.14
1212

1313
### Patch Changes
1414

15-
- Updated dependencies [[`c38b152`](https://github.com/seek-oss/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/seek-oss/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/seek-oss/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb)]:
15+
- Updated dependencies [[`c38b152`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb)]:
1616
- @vanilla-extract/css@1.9.0
1717

1818
## 0.0.13
1919

2020
### Patch Changes
2121

22-
- Updated dependencies [[`b0b3662`](https://github.com/seek-oss/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba), [`b0b3662`](https://github.com/seek-oss/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba), [`b0b3662`](https://github.com/seek-oss/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba)]:
22+
- Updated dependencies [[`b0b3662`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba), [`b0b3662`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba), [`b0b3662`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba)]:
2323
- @vanilla-extract/babel-plugin@1.2.0
2424
- @vanilla-extract/css@1.8.0
2525

2626
## 0.0.12
2727

2828
### Patch Changes
2929

30-
- Updated dependencies [[`412962f`](https://github.com/seek-oss/vanilla-extract/commit/412962fff737a6f7c80f26d347076c31cbd5905b)]:
30+
- Updated dependencies [[`412962f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/412962fff737a6f7c80f26d347076c31cbd5905b)]:
3131
- @vanilla-extract/css@1.7.4
3232

3333
## 0.0.11
3434

3535
### Patch Changes
3636

37-
- Updated dependencies [[`21afc23`](https://github.com/seek-oss/vanilla-extract/commit/21afc23ae552b8071fbe5d7b0c3dce07fc016ee7), [`2e9d21c`](https://github.com/seek-oss/vanilla-extract/commit/2e9d21c718ba57daa83c5ee323871ffa6ced5d47)]:
37+
- Updated dependencies [[`21afc23`](https://github.com/vanilla-extract-css/vanilla-extract/commit/21afc23ae552b8071fbe5d7b0c3dce07fc016ee7), [`2e9d21c`](https://github.com/vanilla-extract-css/vanilla-extract/commit/2e9d21c718ba57daa83c5ee323871ffa6ced5d47)]:
3838
- @vanilla-extract/webpack-plugin@2.1.12
3939
- @vanilla-extract/css@1.7.3
4040

4141
## 0.0.10
4242

4343
### Patch Changes
4444

45-
- Updated dependencies [[`8467fc2`](https://github.com/seek-oss/vanilla-extract/commit/8467fc28707372f30d8b6239580244c06859a605)]:
45+
- Updated dependencies [[`8467fc2`](https://github.com/vanilla-extract-css/vanilla-extract/commit/8467fc28707372f30d8b6239580244c06859a605)]:
4646
- @vanilla-extract/css@1.7.2
4747
- @vanilla-extract/babel-plugin@1.1.7
4848
- @vanilla-extract/webpack-plugin@2.1.11
@@ -51,22 +51,22 @@
5151

5252
### Patch Changes
5353

54-
- Updated dependencies [[`e531251`](https://github.com/seek-oss/vanilla-extract/commit/e531251689b8795eebd316ae8385f1ecc5b9b8a0)]:
54+
- Updated dependencies [[`e531251`](https://github.com/vanilla-extract-css/vanilla-extract/commit/e531251689b8795eebd316ae8385f1ecc5b9b8a0)]:
5555
- @vanilla-extract/css@1.7.1
5656

5757
## 0.0.8
5858

5959
### Patch Changes
6060

61-
- Updated dependencies [[`32f309f`](https://github.com/seek-oss/vanilla-extract/commit/32f309faad90e927efc7a277d4208480c8b5122c), [`69b8460`](https://github.com/seek-oss/vanilla-extract/commit/69b846015ecada3354ea292e1276e5da560923c6)]:
61+
- Updated dependencies [[`32f309f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/32f309faad90e927efc7a277d4208480c8b5122c), [`69b8460`](https://github.com/vanilla-extract-css/vanilla-extract/commit/69b846015ecada3354ea292e1276e5da560923c6)]:
6262
- @vanilla-extract/css@1.7.0
6363
- @vanilla-extract/webpack-plugin@2.1.8
6464

6565
## 0.0.7
6666

6767
### Patch Changes
6868

69-
- Updated dependencies [[`b294764`](https://github.com/seek-oss/vanilla-extract/commit/b294764b7f3401cec88760894ff19c60ca1d4d1d)]:
69+
- Updated dependencies [[`b294764`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b294764b7f3401cec88760894ff19c60ca1d4d1d)]:
7070
- @vanilla-extract/css@1.6.8
7171
- @vanilla-extract/sprinkles@1.3.3
7272
- @vanilla-extract/babel-plugin@1.1.3
@@ -76,14 +76,14 @@
7676

7777
### Patch Changes
7878

79-
- Updated dependencies [[`e3dfd4a`](https://github.com/seek-oss/vanilla-extract/commit/e3dfd4a54a66ebb3a3cacc0fcc94d2689f97bb40)]:
79+
- Updated dependencies [[`e3dfd4a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/e3dfd4a54a66ebb3a3cacc0fcc94d2689f97bb40)]:
8080
- @vanilla-extract/css@1.6.7
8181

8282
## 0.0.5
8383

8484
### Patch Changes
8585

86-
- Updated dependencies [[`d15e783`](https://github.com/seek-oss/vanilla-extract/commit/d15e783c960144e3b3ca74128cb2d04fbbc16df1)]:
86+
- Updated dependencies [[`d15e783`](https://github.com/vanilla-extract-css/vanilla-extract/commit/d15e783c960144e3b3ca74128cb2d04fbbc16df1)]:
8787
- @vanilla-extract/css@1.6.6
8888
- @vanilla-extract/sprinkles@1.3.2
8989
- @vanilla-extract/webpack-plugin@2.1.3
@@ -92,13 +92,13 @@
9292

9393
### Patch Changes
9494

95-
- Updated dependencies [[`16c960f`](https://github.com/seek-oss/vanilla-extract/commit/16c960f32a011580eb6c4d0a45479fc28729e762)]:
95+
- Updated dependencies [[`16c960f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/16c960f32a011580eb6c4d0a45479fc28729e762)]:
9696
- @vanilla-extract/css@1.6.5
9797

9898
## 0.0.3
9999

100100
### Patch Changes
101101

102-
- Updated dependencies [[`f2d2d9e`](https://github.com/seek-oss/vanilla-extract/commit/f2d2d9eea18dcd4ffec694f8056a78d850485592), [`0c1ec7d`](https://github.com/seek-oss/vanilla-extract/commit/0c1ec7d5bfa5c4e66b4655c4f417f2751af7b3e3)]:
102+
- Updated dependencies [[`f2d2d9e`](https://github.com/vanilla-extract-css/vanilla-extract/commit/f2d2d9eea18dcd4ffec694f8056a78d850485592), [`0c1ec7d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/0c1ec7d5bfa5c4e66b4655c4f417f2751af7b3e3)]:
103103
- @vanilla-extract/webpack-plugin@2.1.2
104104
- @vanilla-extract/css@1.6.4

fixtures/features/CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,91 +4,91 @@
44

55
### Patch Changes
66

7-
- Updated dependencies [[`9191d5a`](https://github.com/seek-oss/vanilla-extract/commit/9191d5adcdd4d129affdf5482659120e03a3d003), [`b53558a`](https://github.com/seek-oss/vanilla-extract/commit/b53558a3872987282b23d62b0063e4d789a379f9)]:
7+
- Updated dependencies [[`9191d5a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/9191d5adcdd4d129affdf5482659120e03a3d003), [`b53558a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b53558a3872987282b23d62b0063e4d789a379f9)]:
88
- @vanilla-extract/css@1.9.1
99

1010
## 0.0.12
1111

1212
### Patch Changes
1313

14-
- Updated dependencies [[`c38b152`](https://github.com/seek-oss/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/seek-oss/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/seek-oss/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb)]:
14+
- Updated dependencies [[`c38b152`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb), [`c38b152`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c38b152ff6dbcf0f2b4226fc167d67314ecebabb)]:
1515
- @vanilla-extract/css@1.9.0
1616

1717
## 0.0.11
1818

1919
### Patch Changes
2020

21-
- Updated dependencies [[`b0b3662`](https://github.com/seek-oss/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba), [`b0b3662`](https://github.com/seek-oss/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba)]:
21+
- Updated dependencies [[`b0b3662`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba), [`b0b3662`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b0b36626de328a8dcc5c0301d50099fbe77a5cba)]:
2222
- @vanilla-extract/css@1.8.0
2323

2424
## 0.0.10
2525

2626
### Patch Changes
2727

28-
- Updated dependencies [[`412962f`](https://github.com/seek-oss/vanilla-extract/commit/412962fff737a6f7c80f26d347076c31cbd5905b)]:
28+
- Updated dependencies [[`412962f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/412962fff737a6f7c80f26d347076c31cbd5905b)]:
2929
- @vanilla-extract/css@1.7.4
3030

3131
## 0.0.9
3232

3333
### Patch Changes
3434

35-
- Updated dependencies [[`2e9d21c`](https://github.com/seek-oss/vanilla-extract/commit/2e9d21c718ba57daa83c5ee323871ffa6ced5d47)]:
35+
- Updated dependencies [[`2e9d21c`](https://github.com/vanilla-extract-css/vanilla-extract/commit/2e9d21c718ba57daa83c5ee323871ffa6ced5d47)]:
3636
- @vanilla-extract/css@1.7.3
3737

3838
## 0.0.8
3939

4040
### Patch Changes
4141

42-
- Updated dependencies [[`8467fc2`](https://github.com/seek-oss/vanilla-extract/commit/8467fc28707372f30d8b6239580244c06859a605)]:
42+
- Updated dependencies [[`8467fc2`](https://github.com/vanilla-extract-css/vanilla-extract/commit/8467fc28707372f30d8b6239580244c06859a605)]:
4343
- @vanilla-extract/css@1.7.2
4444

4545
## 0.0.7
4646

4747
### Patch Changes
4848

49-
- Updated dependencies [[`e531251`](https://github.com/seek-oss/vanilla-extract/commit/e531251689b8795eebd316ae8385f1ecc5b9b8a0)]:
49+
- Updated dependencies [[`e531251`](https://github.com/vanilla-extract-css/vanilla-extract/commit/e531251689b8795eebd316ae8385f1ecc5b9b8a0)]:
5050
- @vanilla-extract/css@1.7.1
5151

5252
## 0.0.6
5353

5454
### Patch Changes
5555

56-
- Updated dependencies [[`32f309f`](https://github.com/seek-oss/vanilla-extract/commit/32f309faad90e927efc7a277d4208480c8b5122c)]:
56+
- Updated dependencies [[`32f309f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/32f309faad90e927efc7a277d4208480c8b5122c)]:
5757
- @vanilla-extract/css@1.7.0
5858

5959
## 0.0.5
6060

6161
### Patch Changes
6262

63-
- Updated dependencies [[`b294764`](https://github.com/seek-oss/vanilla-extract/commit/b294764b7f3401cec88760894ff19c60ca1d4d1d)]:
63+
- Updated dependencies [[`b294764`](https://github.com/vanilla-extract-css/vanilla-extract/commit/b294764b7f3401cec88760894ff19c60ca1d4d1d)]:
6464
- @vanilla-extract/css@1.6.8
6565
- @vanilla-extract/dynamic@2.0.2
6666

6767
## 0.0.4
6868

6969
### Patch Changes
7070

71-
- Updated dependencies [[`e3dfd4a`](https://github.com/seek-oss/vanilla-extract/commit/e3dfd4a54a66ebb3a3cacc0fcc94d2689f97bb40)]:
71+
- Updated dependencies [[`e3dfd4a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/e3dfd4a54a66ebb3a3cacc0fcc94d2689f97bb40)]:
7272
- @vanilla-extract/css@1.6.7
7373

7474
## 0.0.3
7575

7676
### Patch Changes
7777

78-
- Updated dependencies [[`d15e783`](https://github.com/seek-oss/vanilla-extract/commit/d15e783c960144e3b3ca74128cb2d04fbbc16df1)]:
78+
- Updated dependencies [[`d15e783`](https://github.com/vanilla-extract-css/vanilla-extract/commit/d15e783c960144e3b3ca74128cb2d04fbbc16df1)]:
7979
- @vanilla-extract/css@1.6.6
8080
- @vanilla-extract/dynamic@2.0.1
8181

8282
## 0.0.2
8383

8484
### Patch Changes
8585

86-
- Updated dependencies [[`16c960f`](https://github.com/seek-oss/vanilla-extract/commit/16c960f32a011580eb6c4d0a45479fc28729e762)]:
86+
- Updated dependencies [[`16c960f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/16c960f32a011580eb6c4d0a45479fc28729e762)]:
8787
- @vanilla-extract/css@1.6.5
8888

8989
## 0.0.1
9090

9191
### Patch Changes
9292

93-
- Updated dependencies [[`0c1ec7d`](https://github.com/seek-oss/vanilla-extract/commit/0c1ec7d5bfa5c4e66b4655c4f417f2751af7b3e3)]:
93+
- Updated dependencies [[`0c1ec7d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/0c1ec7d5bfa5c4e66b4655c4f417f2751af7b3e3)]:
9494
- @vanilla-extract/css@1.6.4

0 commit comments

Comments
 (0)