diff --git a/README.md b/README.md index 4617caa..9b8583e 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ The documentation can be found [here](./docs/README.md) ### Clone the repository ```shell -git clone https://github.com/mfts/papermark.git -cd papermark +git clone https://github.com/undyingwraith/ipmc.git +cd ipmc ``` ### Installing dependencies @@ -38,16 +38,8 @@ yarn install ### Running it in dev mode -Run the following commands in paralell: - -```shell -yarn workspace watch -yarn workspace ipmc-desktop run dev -``` - -*NOTE: for first time install you might need to run a build first* ```shell -yarn build +yarn dev ``` ## Packages diff --git a/package.json b/package.json index e1cbcef..76b0e5f 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "type": "module", "packageManager": "yarn@4.6.0", "scripts": { - "watch": "yarn workspaces foreach -Api run watch", + "dev": "yarn workspaces foreach -Api run dev", "build": "yarn workspaces foreach -At run build", "test": "yarn workspaces foreach -At run test", "cli": "yarn workspace ipmc-tools run cli" diff --git a/packages/core/package.json b/packages/core/package.json index e67d8be..3d84b62 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "./dist/index.js", "type": "module", "scripts": { - "watch": "tsc --watch", + "dev": "tsc --watch", "build": "tsc", "test": "vitest run" }, diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index fc7fb14..ec0ca1c 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -3,7 +3,7 @@ "main": "./dist/index.js", "type": "module", "scripts": { - "watch": "tsc --watch", + "dev": "tsc --watch", "build": "tsc" }, "devDependencies": { diff --git a/packages/ui/package.json b/packages/ui/package.json index 20053d2..5bfc972 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -16,7 +16,7 @@ "./style.css": "./dist/style.css" }, "scripts": { - "watch": "vite build --watch --mode dev", + "dev": "vite build --watch --mode dev", "build": "vite build", "test": "vitest run" }, diff --git a/packages/webui/package.json b/packages/webui/package.json index 90374ca..0f2bb90 100644 --- a/packages/webui/package.json +++ b/packages/webui/package.json @@ -2,7 +2,7 @@ "name": "ipmc-webui", "type": "module", "scripts": { - "watch": "vite", + "dev": "vite", "build": "vite build" }, "dependencies": {