Skip to content

Commit 4c690ca

Browse files
authored
Rename private package scope (#529)
1 parent 16e8cd2 commit 4c690ca

14 files changed

+34
-22
lines changed

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-helpers/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @ve-private/test-helpers
1+
# @vanilla-extract-private/test-helpers
22

33
## 0.0.5
44

test-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@ve-private/test-helpers",
2+
"name": "@vanilla-extract-private/test-helpers",
33
"private": true,
44
"version": "0.0.5",
55
"main": "src/index.ts",

tests/CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @ve-private/tests
1+
# @vanilla-extract-private/tests
22

33
## 0.0.5
44

@@ -9,15 +9,15 @@
99
- @vanilla-extract/dynamic@2.0.2
1010
- @vanilla-extract/recipes@0.2.3
1111
- @vanilla-extract/sprinkles@1.3.3
12-
- @ve-private/test-helpers@0.0.5
12+
- @vanilla-extract-private/test-helpers@0.0.5
1313

1414
## 0.0.4
1515

1616
### Patch Changes
1717

1818
- Updated dependencies [[`e3dfd4a`](https://github.com/seek-oss/vanilla-extract/commit/e3dfd4a54a66ebb3a3cacc0fcc94d2689f97bb40)]:
1919
- @vanilla-extract/css@1.6.7
20-
- @ve-private/test-helpers@0.0.4
20+
- @vanilla-extract-private/test-helpers@0.0.4
2121

2222
## 0.0.3
2323

@@ -28,20 +28,20 @@
2828
- @vanilla-extract/dynamic@2.0.1
2929
- @vanilla-extract/recipes@0.2.2
3030
- @vanilla-extract/sprinkles@1.3.2
31-
- @ve-private/test-helpers@0.0.3
31+
- @vanilla-extract-private/test-helpers@0.0.3
3232

3333
## 0.0.2
3434

3535
### Patch Changes
3636

3737
- Updated dependencies [[`16c960f`](https://github.com/seek-oss/vanilla-extract/commit/16c960f32a011580eb6c4d0a45479fc28729e762)]:
3838
- @vanilla-extract/css@1.6.5
39-
- @ve-private/test-helpers@0.0.2
39+
- @vanilla-extract-private/test-helpers@0.0.2
4040

4141
## 0.0.1
4242

4343
### Patch Changes
4444

4545
- Updated dependencies [[`0c1ec7d`](https://github.com/seek-oss/vanilla-extract/commit/0c1ec7d5bfa5c4e66b4655c4f417f2751af7b3e3)]:
4646
- @vanilla-extract/css@1.6.4
47-
- @ve-private/test-helpers@0.0.1
47+
- @vanilla-extract-private/test-helpers@0.0.1

tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@ve-private/tests",
2+
"name": "@vanilla-extract-private/tests",
33
"private": true,
44
"version": "0.0.5",
55
"author": "SEEK",
@@ -8,10 +8,10 @@
88
"@playwright/test": "^1.14.1",
99
"@testing-library/dom": "^7.30.0",
1010
"@testing-library/jest-dom": "^5.11.9",
11+
"@vanilla-extract-private/test-helpers": "*",
1112
"@vanilla-extract/css": "*",
1213
"@vanilla-extract/dynamic": "*",
1314
"@vanilla-extract/recipes": "*",
14-
"@vanilla-extract/sprinkles": "*",
15-
"@ve-private/test-helpers": "*"
15+
"@vanilla-extract/sprinkles": "*"
1616
}
1717
}

tests/screenshots/features.playwright.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { expect } from '@playwright/test';
2-
import { startFixture, TestServer } from '@ve-private/test-helpers';
2+
import {
3+
startFixture,
4+
TestServer,
5+
} from '@vanilla-extract-private/test-helpers';
36

47
import test from './fixture';
58

tests/screenshots/recipes.playwright.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { expect } from '@playwright/test';
2-
import { startFixture, TestServer } from '@ve-private/test-helpers';
2+
import {
3+
startFixture,
4+
TestServer,
5+
} from '@vanilla-extract-private/test-helpers';
36

47
import test from './fixture';
58

tests/screenshots/sprinkles.playwright.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { expect } from '@playwright/test';
2-
import { startFixture, TestServer } from '@ve-private/test-helpers';
2+
import {
3+
startFixture,
4+
TestServer,
5+
} from '@vanilla-extract-private/test-helpers';
36

47
import test from './fixture';
58

tests/screenshots/themed.playwright.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { expect } from '@playwright/test';
2-
import { startFixture, TestServer } from '@ve-private/test-helpers';
2+
import {
3+
startFixture,
4+
TestServer,
5+
} from '@vanilla-extract-private/test-helpers';
36

47
import test from './fixture';
58

tests/stylesheets/features.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
getStylesheet,
33
startFixture,
44
TestServer,
5-
} from '@ve-private/test-helpers';
5+
} from '@vanilla-extract-private/test-helpers';
66

77
const workerIndex = parseInt(process.env.JEST_WORKER_ID ?? '', 10);
88
let testCounter = 0;

0 commit comments

Comments
 (0)