Skip to content

Commit c658dbf

Browse files
committed
chore: version up v0.2.1
1 parent 91fe7be commit c658dbf

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

packages/core/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
22
"name": "@context-query/core",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"type": "module",
55
"license": "MIT",
66
"scripts": {
77
"build": "rollup -c",
88
"dev": "rollup -c -w"
99
},
10-
"main": "dist/index.js",
11-
"module": "dist/index.esm.js",
12-
"types": "dist/index.d.ts",
10+
"main": "./dist/index.cjs",
11+
"module": "./dist/index.mjs",
12+
"types": "./dist/index.d.ts",
1313
"files": [
1414
"dist"
1515
],
1616
"exports": {
1717
".": {
18-
"import": "./dist/index.js",
18+
"import": "./dist/index.mjs",
1919
"require": "./dist/index.cjs",
2020
"types": "./dist/index.d.ts",
21-
"default": "./dist/index.js"
21+
"default": "./dist/index.mjs"
2222
}
2323
},
2424
"packageManager": "pnpm@9.0.0"

packages/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@context-query/react": "0.2.0",
12+
"@context-query/react": "0.2.1",
1313
"@radix-ui/react-slot": "^1.1.2",
1414
"@tailwindcss/vite": "^4.0.13",
1515
"class-variance-authority": "^0.7.1",

packages/react/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@context-query/react",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"license": "MIT",
55
"description": "React bindings for ContextQuery",
66
"author": "Minyeoung Seo <tjalsdud89@naver.com>",
@@ -20,29 +20,29 @@
2020
"build": "rollup -c",
2121
"dev": "rollup -c -w"
2222
},
23-
"main": "dist/index.js",
24-
"module": "dist/index.esm.js",
25-
"types": "dist/index.d.ts",
23+
"main": "./dist/index.cjs",
24+
"module": "./dist/index.mjs",
25+
"types": "./dist/index.d.ts",
2626
"files": [
2727
"dist"
2828
],
29+
"exports": {
30+
".": {
31+
"import": "./dist/index.mjs",
32+
"require": "./dist/index.cjs",
33+
"types": "./dist/index.d.ts",
34+
"default": "./dist/index.mjs"
35+
}
36+
},
2937
"peerDependencies": {
3038
"react": "^18.0.0 || ^19.0.0"
3139
},
3240
"dependencies": {
33-
"@context-query/core": "0.2.0",
41+
"@context-query/core": "0.2.1",
3442
"react": "^18.3.1"
3543
},
3644
"devDependencies": {
3745
"@types/react": "^19.0.10"
3846
},
39-
"packageManager": "pnpm@9.0.0",
40-
"exports": {
41-
".": {
42-
"types": "./dist/index.d.ts",
43-
"default": "./dist/index.js",
44-
"import": "./dist/index.js",
45-
"require": "./dist/index.cjs"
46-
}
47-
}
47+
"packageManager": "pnpm@9.0.0"
4848
}

0 commit comments

Comments
 (0)