From da8e527b84e3d9379a552a9914366691b84b00a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isabella=20Sko=C5=99epov=C3=A1?= Date: Thu, 8 Apr 2021 13:24:56 +0200 Subject: [PATCH] chore: move to separate repository --- .gitignore | 5 +++++ README.md | 9 +++++++++ package.json | 15 +++++++++------ 3 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fdfc43c --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +node_modules +package-lock.json +yarn.lock +dist +.rts2_cache* diff --git a/README.md b/README.md new file mode 100644 index 0000000..78f8382 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# @isbl/docker-run + +[![](https://img.shields.io/npm/l/@isbl/docker-run?style=for-the-badge)](https://github.com/CodeWitchBella/isbl-docker-run/blob/main/LICENSE) +[![](https://img.shields.io/npm/v/@isbl/docker-run?style=for-the-badge)](https://www.npmjs.com/package/@isbl/docker-run) +[![](https://img.shields.io/david/CodeWitchBella/isbl-docker-run?style=for-the-badge)](https://github.com/CodeWitchBella/isbl-docker-run/blob/main/package.json) +![](https://img.shields.io/github/last-commit/CodeWitchBella/isbl-docker-run?style=for-the-badge) +[![](https://img.shields.io/github/release-date/CodeWitchBella/isbl-docker-run?style=for-the-badge)](https://github.com/CodeWitchBella/isbl-docker-run/releases) + +Simplifies running project with multiple dockerized parts. diff --git a/package.json b/package.json index be80099..dd13567 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@codewitchbella/docker-start", - "version": "0.6.0", + "name": "@isbl/docker-start", + "version": "0.7.0", "description": "Simplifies starting of apps inside docker container", "main": "dist/index.js", "source": "src/index.ts", @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "https://gitlab.com/codewitchbella/docker-start.git" + "url": "https://github.com/CodeWitchBella/isbl-docker-start.git" }, "author": "Isabella Skořepová ", "license": "MIT", @@ -22,14 +22,17 @@ }, "devDependencies": { "@codewitchbella/microbundle": "^0.11.1", - "@codewitchbella/scripts-backend": "^0.3.0" + "@codewitchbella/scripts-backend": "^0.3.0", + "@isbl/publisher": "^0.4.1" }, "dependencies": { - "@types/node": "^14.0.27" + "@types/node": "^14.14.37" }, "scripts": { "prepare": "microbundle --target node", "check": "cwb-scripts-backend check", - "lint": "cwb-scripts-backend lint" + "lint": "cwb-scripts-backend lint", + "prepublishOnly": "isbl-publisher prepublishOnly", + "publish:npm": "yarn prepare && isbl-publisher publish" } }