This commit is contained in:
Danya H 2024-10-30 20:03:31 +00:00
parent b53177903e
commit 2a3e9ab6ad
7 changed files with 11 additions and 11 deletions

View File

@ -8,10 +8,10 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@entityseven/rage-fw-rpc": "0.2.5",
"@rage-fw/shared": "workspace:^", "@rage-fw/shared": "workspace:^",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0"
"rage-fw-rpc": "latest"
}, },
"devDependencies": { "devDependencies": {
"@types/react": "^18.2.66", "@types/react": "^18.2.66",

View File

@ -1,4 +1,4 @@
import { Rpc } from 'rage-fw-rpc' import { Rpc } from '@entityseven/rage-fw-rpc'
export const rpc = new Rpc({ export const rpc = new Rpc({
debugLogs: true, debugLogs: true,

View File

@ -5,8 +5,8 @@
"build": "esbuild src/index.ts --bundle --platform=node --outfile=../../server/client_packages/index.js --format=esm" "build": "esbuild src/index.ts --bundle --platform=node --outfile=../../server/client_packages/index.js --format=esm"
}, },
"dependencies": { "dependencies": {
"@rage-fw/shared": "workspace:^", "@entityseven/rage-fw-rpc": "0.2.5",
"rage-fw-rpc": "latest" "@rage-fw/shared": "workspace:^"
}, },
"license": "CC BY-ND", "license": "CC BY-ND",
"author": "Entity Seven Group", "author": "Entity Seven Group",

View File

@ -1,4 +1,4 @@
import { Rpc } from 'rage-fw-rpc' import { Rpc } from '@entityseven/rage-fw-rpc'
export const rpc = new Rpc({ export const rpc = new Rpc({
debugLogs: true, debugLogs: true,

View File

@ -5,8 +5,8 @@
"build": "esbuild src/index.ts --bundle --platform=node --target=node10.4 --outfile=../../server/packages/server/index.js" "build": "esbuild src/index.ts --bundle --platform=node --target=node10.4 --outfile=../../server/packages/server/index.js"
}, },
"dependencies": { "dependencies": {
"@rage-fw/shared": "workspace:^", "@entityseven/rage-fw-rpc": "0.2.5",
"rage-fw-rpc": "latest" "@rage-fw/shared": "workspace:^"
}, },
"license": "CC BY-ND", "license": "CC BY-ND",
"author": "Entity Seven Group", "author": "Entity Seven Group",

View File

@ -1,4 +1,4 @@
import { Rpc } from 'rage-fw-rpc' import { Rpc } from '@entityseven/rage-fw-rpc'
export const rpc = new Rpc({ export const rpc = new Rpc({
debugLogs: true, debugLogs: true,

View File

@ -1,6 +1,6 @@
{ {
"name": "framework-example", "name": "framework-example",
"description": "This project is an example of RAGE-FW usage", "description": "This project is an example of RAGE FW usage",
"workspaces": [ "workspaces": [
"apps/*" "apps/*"
], ],
@ -24,7 +24,7 @@
"typescript": "^5.4.5", "typescript": "^5.4.5",
"prettier": "^3.3.2" "prettier": "^3.3.2"
}, },
"license": "CC BY-ND", "license": "MIT",
"author": "Entity Seven Group", "author": "Entity Seven Group",
"version": "0.1.0" "version": "0.1.0"
} }