Skip to content

Commit

Permalink
0.3.0-alpha.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Jul 16, 2024
1 parent 1166c2f commit e68d933
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 18 deletions.
15 changes: 11 additions & 4 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rspc/client",
"version": "0.3.0",
"version": "0.3.0-alpha.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
Expand All @@ -19,7 +19,9 @@
"./package.json": "./package.json"
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && tsc"
Expand All @@ -28,8 +30,13 @@
"tsup": "^8.1.0"
},
"tsup": {
"entry": ["src/index.ts"],
"format": ["esm", "cjs"],
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"splitting": true,
"clean": true,
"sourcemap": true
Expand Down
15 changes: 11 additions & 4 deletions packages/query-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rspc/query-core",
"version": "0.3.0",
"version": "0.3.0-alpha.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
Expand All @@ -19,7 +19,9 @@
}
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && tsc"
Expand All @@ -34,8 +36,13 @@
"@rspc/client": "workspace:*"
},
"tsup": {
"entry": ["src/index.ts"],
"format": ["esm", "cjs"],
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"splitting": true,
"clean": true,
"sourcemap": true
Expand Down
15 changes: 11 additions & 4 deletions packages/react-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rspc/react-query",
"version": "0.3.0",
"version": "0.3.0-alpha.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
Expand All @@ -19,7 +19,9 @@
}
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && tsc"
Expand All @@ -43,8 +45,13 @@
"react": "^18.0.0"
},
"tsup": {
"entry": ["src/index.tsx"],
"format": ["esm", "cjs"],
"entry": [
"src/index.tsx"
],
"format": [
"esm",
"cjs"
],
"splitting": true,
"clean": true,
"sourcemap": true
Expand Down
15 changes: 11 additions & 4 deletions packages/solid-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rspc/solid-query",
"version": "0.3.0",
"version": "0.3.0-alpha.0",
"description": "A blazing fast and easy to use TRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
Expand All @@ -23,7 +23,9 @@
}
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && tsc"
Expand All @@ -48,8 +50,13 @@
"solid-js": "^1.8.0"
},
"tsup": {
"entry": ["src/index.tsx"],
"format": ["esm", "cjs"],
"entry": [
"src/index.tsx"
],
"format": [
"esm",
"cjs"
],
"splitting": true,
"clean": true,
"sourcemap": true
Expand Down
6 changes: 4 additions & 2 deletions packages/svelte-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rspc/svelte-query",
"version": "0.3.0",
"version": "0.3.0-alpha.0",
"description": "A blazingly fast and easy to use tRPC-like server for Rust.",
"keywords": [],
"author": "Oscar Beaumont",
Expand Down Expand Up @@ -28,7 +28,9 @@
"./package.json": "./package.json"
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "svelte-package --input ./src --output ./dist",
"test": "vitest"
Expand Down

0 comments on commit e68d933

Please sign in to comment.