From e1d953c8554f0eca9d51dc72ba47780c6ce8401b Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 7 Oct 2022 17:00:26 +0200 Subject: [PATCH 1/6] chore: reset versions to 0.0.0 --- lerna.json | 4 ++-- packages/backend/package.json | 8 ++++---- packages/cli/package.json | 2 +- packages/docs/package.json | 4 ++-- packages/types/package.json | 4 ++-- packages/web/package.json | 6 +++--- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lerna.json b/lerna.json index be0057a6..bb7fe322 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages/*" ], "private": true, - "version": "independent", + "version": "0.0.0", "npmClient": "yarn", "useWorkspaces": true, "command": { @@ -14,4 +14,4 @@ "exact": true } } -} +} \ No newline at end of file diff --git a/packages/backend/package.json b/packages/backend/package.json index 3dd4401f..2224a538 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/backend", - "version": "0.1.0", + "version": "0.0.0", "license": "AGPL-3.0", "description": "> TODO: description", "scripts": { @@ -21,7 +21,7 @@ "prepack": "yarn build" }, "dependencies": { - "@automatisch/web": "0.1.0", + "@automatisch/web": "0.0.0", "@bull-board/express": "^3.10.1", "@gitbeaker/node": "^35.6.0", "@graphql-tools/graphql-file-loader": "^7.3.4", @@ -99,7 +99,7 @@ "url": "https://github.com/automatisch/automatisch/issues" }, "devDependencies": { - "@automatisch/types": "0.1.0", + "@automatisch/types": "0.0.0", "@types/bcrypt": "^5.0.0", "@types/bull": "^3.15.8", "@types/cors": "^2.8.12", @@ -130,4 +130,4 @@ "ts-node/register" ] } -} +} \ No newline at end of file diff --git a/packages/cli/package.json b/packages/cli/package.json index c3bccec4..7501ee43 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/cli", - "version": "0.1.0", + "version": "0.0.0", "license": "AGPL-3.0", "description": "> TODO: description", "contributors": [ diff --git a/packages/docs/package.json b/packages/docs/package.json index 1d376e96..90f64837 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/docs", - "version": "0.1.0", + "version": "0.0.0", "license": "AGPL-3.0", "description": "> TODO: description", "private": true, @@ -27,4 +27,4 @@ "bugs": { "url": "https://github.com/automatisch/automatisch/issues" } -} +} \ No newline at end of file diff --git a/packages/types/package.json b/packages/types/package.json index 6f4120cd..ac4ae0ee 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/types", - "version": "0.1.0", + "version": "0.0.0", "license": "AGPL-3.0", "description": "Type definitions for automatisch", "homepage": "https://github.com/automatisch/automatisch", @@ -14,4 +14,4 @@ "bugs": { "url": "https://github.com/automatisch/automatisch/issues" } -} +} \ No newline at end of file diff --git a/packages/web/package.json b/packages/web/package.json index 3583704c..79475e81 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,11 +1,11 @@ { "name": "@automatisch/web", - "version": "0.1.0", + "version": "0.0.0", "license": "AGPL-3.0", "description": "> TODO: description", "dependencies": { "@apollo/client": "^3.6.9", - "@automatisch/types": "0.1.0", + "@automatisch/types": "0.0.0", "@emotion/react": "^11.4.1", "@emotion/styled": "^11.3.0", "@hookform/resolvers": "^2.8.8", @@ -79,4 +79,4 @@ "last 1 safari version" ] } -} +} \ No newline at end of file From a80cd106bf37201c05da58581d8b13e9e7d2bd53 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 7 Oct 2022 17:03:21 +0200 Subject: [PATCH 2/6] chore: remove package local registry --- lerna.json | 4 ---- package.json | 6 +----- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/lerna.json b/lerna.json index bb7fe322..232b9053 100644 --- a/lerna.json +++ b/lerna.json @@ -2,14 +2,10 @@ "packages": [ "packages/*" ], - "private": true, "version": "0.0.0", "npmClient": "yarn", "useWorkspaces": true, "command": { - "publish": { - "registry": "http://localhost:5000" - }, "add": { "exact": true } diff --git a/package.json b/package.json index 42fad1c8..54c5992d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "@automatisch/root", "license": "AGPL-3.0", - "private": true, "scripts": { "start": "lerna run --stream --parallel --scope=@*/{web,backend} dev", "start:web": "lerna run --stream --scope=@*/web dev", @@ -30,8 +29,5 @@ "eslint-plugin-prettier": "^4.0.0", "lerna": "^4.0.0", "prettier": "^2.5.1" - }, - "publishConfig": { - "registry": "http://localhost:5000" } -} +} \ No newline at end of file From c79c82cac703abe897213760974f6f93e2e8ecdb Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 7 Oct 2022 17:22:55 +0200 Subject: [PATCH 3/6] docs: add description in packages --- packages/backend/README.md | 3 ++- packages/backend/package.json | 2 +- packages/cli/README.md | 3 ++- packages/cli/package.json | 2 +- packages/docs/package.json | 2 +- packages/types/README.md | 3 ++- packages/web/package.json | 2 +- 7 files changed, 10 insertions(+), 7 deletions(-) diff --git a/packages/backend/README.md b/packages/backend/README.md index b2e54cd4..a1917ebc 100644 --- a/packages/backend/README.md +++ b/packages/backend/README.md @@ -1,6 +1,7 @@ # `backend` -> TODO: description +The open source Zapier alternative. Build workflow automation without spending +time and money. ## Usage diff --git a/packages/backend/package.json b/packages/backend/package.json index 2224a538..aef06ceb 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -2,7 +2,7 @@ "name": "@automatisch/backend", "version": "0.0.0", "license": "AGPL-3.0", - "description": "> TODO: description", + "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "scripts": { "dev": "ts-node-dev src/server.ts", "worker": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/worker.ts", diff --git a/packages/cli/README.md b/packages/cli/README.md index 8c2b8f9c..cfdf5166 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -1,6 +1,7 @@ # `@automatisch/cli` -> TODO: description +The open source Zapier alternative. Build workflow automation without spending +time and money. ## Usage diff --git a/packages/cli/package.json b/packages/cli/package.json index 7501ee43..747cff9d 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "@automatisch/cli", "version": "0.0.0", "license": "AGPL-3.0", - "description": "> TODO: description", + "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "contributors": [ { "name": "automatisch contributors", diff --git a/packages/docs/package.json b/packages/docs/package.json index 90f64837..91028783 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -2,7 +2,7 @@ "name": "@automatisch/docs", "version": "0.0.0", "license": "AGPL-3.0", - "description": "> TODO: description", + "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "private": true, "scripts": { "dev": "vitepress dev pages --port 3002", diff --git a/packages/types/README.md b/packages/types/README.md index 0d99c26c..c916471d 100644 --- a/packages/types/README.md +++ b/packages/types/README.md @@ -1,6 +1,7 @@ # `@automatisch/types` -> TODO: description +The open source Zapier alternative. Build workflow automation without spending +time and money. ## Usage diff --git a/packages/web/package.json b/packages/web/package.json index 79475e81..db90e844 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -2,7 +2,7 @@ "name": "@automatisch/web", "version": "0.0.0", "license": "AGPL-3.0", - "description": "> TODO: description", + "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "dependencies": { "@apollo/client": "^3.6.9", "@automatisch/types": "0.0.0", From 2d3e3071893e8c4a0df32146618f6a3bef051d78 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 7 Oct 2022 17:28:18 +0200 Subject: [PATCH 4/6] chore: mark packages as public --- package.json | 3 +++ packages/backend/package.json | 3 +++ packages/cli/package.json | 5 ++++- packages/types/package.json | 3 +++ packages/web/package.json | 3 +++ 5 files changed, 16 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 54c5992d..bd34a7aa 100644 --- a/package.json +++ b/package.json @@ -29,5 +29,8 @@ "eslint-plugin-prettier": "^4.0.0", "lerna": "^4.0.0", "prettier": "^2.5.1" + }, + "publishConfig": { + "access": "public" } } \ No newline at end of file diff --git a/packages/backend/package.json b/packages/backend/package.json index aef06ceb..430db878 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -129,5 +129,8 @@ "require": [ "ts-node/register" ] + }, + "publishConfig": { + "access": "public" } } \ No newline at end of file diff --git a/packages/cli/package.json b/packages/cli/package.json index 747cff9d..5c58daf3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -66,5 +66,8 @@ "bugs": { "url": "https://github.com/automatisch/automatisch/issues" }, - "types": "dist/index.d.ts" + "types": "dist/index.d.ts", + "publishConfig": { + "access": "public" + } } diff --git a/packages/types/package.json b/packages/types/package.json index ac4ae0ee..7f7e45cc 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -13,5 +13,8 @@ }, "bugs": { "url": "https://github.com/automatisch/automatisch/issues" + }, + "publishConfig": { + "access": "public" } } \ No newline at end of file diff --git a/packages/web/package.json b/packages/web/package.json index db90e844..128aab71 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -78,5 +78,8 @@ "last 1 firefox version", "last 1 safari version" ] + }, + "publishConfig": { + "access": "public" } } \ No newline at end of file From bd5aae3469fc23878069952969d7b23c337839c0 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 7 Oct 2022 17:32:56 +0200 Subject: [PATCH 5/6] Release v0.1.0 --- lerna.json | 2 +- packages/backend/package.json | 8 ++++---- packages/cli/package.json | 2 +- packages/docs/package.json | 4 ++-- packages/types/package.json | 4 ++-- packages/web/package.json | 6 +++--- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/lerna.json b/lerna.json index 232b9053..a4a5a349 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.0.0", + "version": "0.1.0", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/backend/package.json b/packages/backend/package.json index 430db878..264404e9 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/backend", - "version": "0.0.0", + "version": "0.1.0", "license": "AGPL-3.0", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "scripts": { @@ -21,7 +21,7 @@ "prepack": "yarn build" }, "dependencies": { - "@automatisch/web": "0.0.0", + "@automatisch/web": "^0.1.0", "@bull-board/express": "^3.10.1", "@gitbeaker/node": "^35.6.0", "@graphql-tools/graphql-file-loader": "^7.3.4", @@ -99,7 +99,7 @@ "url": "https://github.com/automatisch/automatisch/issues" }, "devDependencies": { - "@automatisch/types": "0.0.0", + "@automatisch/types": "^0.1.0", "@types/bcrypt": "^5.0.0", "@types/bull": "^3.15.8", "@types/cors": "^2.8.12", @@ -133,4 +133,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/packages/cli/package.json b/packages/cli/package.json index 5c58daf3..c73357be 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/cli", - "version": "0.0.0", + "version": "0.1.0", "license": "AGPL-3.0", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "contributors": [ diff --git a/packages/docs/package.json b/packages/docs/package.json index 91028783..c209084d 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/docs", - "version": "0.0.0", + "version": "0.1.0", "license": "AGPL-3.0", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "private": true, @@ -27,4 +27,4 @@ "bugs": { "url": "https://github.com/automatisch/automatisch/issues" } -} \ No newline at end of file +} diff --git a/packages/types/package.json b/packages/types/package.json index 7f7e45cc..5c7f5987 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@automatisch/types", - "version": "0.0.0", + "version": "0.1.0", "license": "AGPL-3.0", "description": "Type definitions for automatisch", "homepage": "https://github.com/automatisch/automatisch", @@ -17,4 +17,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} diff --git a/packages/web/package.json b/packages/web/package.json index 128aab71..9e5bb894 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,11 +1,11 @@ { "name": "@automatisch/web", - "version": "0.0.0", + "version": "0.1.0", "license": "AGPL-3.0", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.", "dependencies": { "@apollo/client": "^3.6.9", - "@automatisch/types": "0.0.0", + "@automatisch/types": "^0.1.0", "@emotion/react": "^11.4.1", "@emotion/styled": "^11.3.0", "@hookform/resolvers": "^2.8.8", @@ -82,4 +82,4 @@ "publishConfig": { "access": "public" } -} \ No newline at end of file +} From 48e9053124fd17c5d19daa6f8637470587782882 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Fri, 7 Oct 2022 17:39:44 +0200 Subject: [PATCH 6/6] chore: mark root package.json as private --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index bd34a7aa..cc3aec88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "@automatisch/root", "license": "AGPL-3.0", + "private": true, "scripts": { "start": "lerna run --stream --parallel --scope=@*/{web,backend} dev", "start:web": "lerna run --stream --scope=@*/web dev",