Merge pull request #562 from automatisch/release/0.1.0

Release v0.1.0
This commit is contained in:
Ömer Faruk Aydın
2022-10-07 18:44:48 +03:00
committed by GitHub
10 changed files with 30 additions and 19 deletions

View File

@@ -2,14 +2,10 @@
"packages": [ "packages": [
"packages/*" "packages/*"
], ],
"private": true, "version": "0.1.0",
"version": "independent",
"npmClient": "yarn", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"command": { "command": {
"publish": {
"registry": "http://localhost:5000"
},
"add": { "add": {
"exact": true "exact": true
} }

View File

@@ -32,6 +32,6 @@
"prettier": "^2.5.1" "prettier": "^2.5.1"
}, },
"publishConfig": { "publishConfig": {
"registry": "http://localhost:5000" "access": "public"
} }
} }

View File

@@ -1,6 +1,7 @@
# `backend` # `backend`
> TODO: description The open source Zapier alternative. Build workflow automation without spending
time and money.
## Usage ## Usage

View File

@@ -2,7 +2,7 @@
"name": "@automatisch/backend", "name": "@automatisch/backend",
"version": "0.1.0", "version": "0.1.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "> TODO: description", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
"scripts": { "scripts": {
"dev": "ts-node-dev src/server.ts", "dev": "ts-node-dev src/server.ts",
"worker": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/worker.ts", "worker": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/worker.ts",
@@ -21,7 +21,7 @@
"prepack": "yarn build" "prepack": "yarn build"
}, },
"dependencies": { "dependencies": {
"@automatisch/web": "0.1.0", "@automatisch/web": "^0.1.0",
"@bull-board/express": "^3.10.1", "@bull-board/express": "^3.10.1",
"@gitbeaker/node": "^35.6.0", "@gitbeaker/node": "^35.6.0",
"@graphql-tools/graphql-file-loader": "^7.3.4", "@graphql-tools/graphql-file-loader": "^7.3.4",
@@ -99,7 +99,7 @@
"url": "https://github.com/automatisch/automatisch/issues" "url": "https://github.com/automatisch/automatisch/issues"
}, },
"devDependencies": { "devDependencies": {
"@automatisch/types": "0.1.0", "@automatisch/types": "^0.1.0",
"@types/bcrypt": "^5.0.0", "@types/bcrypt": "^5.0.0",
"@types/bull": "^3.15.8", "@types/bull": "^3.15.8",
"@types/cors": "^2.8.12", "@types/cors": "^2.8.12",
@@ -129,5 +129,8 @@
"require": [ "require": [
"ts-node/register" "ts-node/register"
] ]
},
"publishConfig": {
"access": "public"
} }
} }

View File

@@ -1,6 +1,7 @@
# `@automatisch/cli` # `@automatisch/cli`
> TODO: description The open source Zapier alternative. Build workflow automation without spending
time and money.
## Usage ## Usage

View File

@@ -2,7 +2,7 @@
"name": "@automatisch/cli", "name": "@automatisch/cli",
"version": "0.1.0", "version": "0.1.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "> TODO: description", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
"contributors": [ "contributors": [
{ {
"name": "automatisch contributors", "name": "automatisch contributors",
@@ -66,5 +66,8 @@
"bugs": { "bugs": {
"url": "https://github.com/automatisch/automatisch/issues" "url": "https://github.com/automatisch/automatisch/issues"
}, },
"types": "dist/index.d.ts" "types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
}
} }

View File

@@ -2,7 +2,7 @@
"name": "@automatisch/docs", "name": "@automatisch/docs",
"version": "0.1.0", "version": "0.1.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "> TODO: description", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vitepress dev pages --port 3002", "dev": "vitepress dev pages --port 3002",

View File

@@ -1,6 +1,7 @@
# `@automatisch/types` # `@automatisch/types`
> TODO: description The open source Zapier alternative. Build workflow automation without spending
time and money.
## Usage ## Usage

View File

@@ -13,5 +13,8 @@
}, },
"bugs": { "bugs": {
"url": "https://github.com/automatisch/automatisch/issues" "url": "https://github.com/automatisch/automatisch/issues"
},
"publishConfig": {
"access": "public"
} }
} }

View File

@@ -2,10 +2,10 @@
"name": "@automatisch/web", "name": "@automatisch/web",
"version": "0.1.0", "version": "0.1.0",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "> TODO: description", "description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
"dependencies": { "dependencies": {
"@apollo/client": "^3.6.9", "@apollo/client": "^3.6.9",
"@automatisch/types": "0.1.0", "@automatisch/types": "^0.1.0",
"@emotion/react": "^11.4.1", "@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0", "@emotion/styled": "^11.3.0",
"@hookform/resolvers": "^2.8.8", "@hookform/resolvers": "^2.8.8",
@@ -78,5 +78,8 @@
"last 1 firefox version", "last 1 firefox version",
"last 1 safari version" "last 1 safari version"
] ]
},
"publishConfig": {
"access": "public"
} }
} }