From 2dc0850c8c4c0b0f10c9e8c516b55ffdb86604c8 Mon Sep 17 00:00:00 2001 From: Han Xiao Date: Thu, 11 Apr 2024 15:44:12 -0700 Subject: [PATCH] chore: rename url2text to reader --- README.md | 4 ++-- backend/functions/package.json | 2 +- backend/functions/src/index.ts | 2 +- package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 904625e..ee6deb3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Url2Text +# reader ## Development Guide @@ -12,7 +12,7 @@ Clone the scenex repo by running the command: ```bash -git clone git@github.com:jina-ai/url2text.git +git clone git@github.com:jina-ai/reader.git git submodule init git submodule update ``` diff --git a/backend/functions/package.json b/backend/functions/package.json index 172937d..6a6b277 100644 --- a/backend/functions/package.json +++ b/backend/functions/package.json @@ -1,5 +1,5 @@ { - "name": "url2text", + "name": "reader", "scripts": { "lint": "eslint --ext .js,.ts .", "build": "tsc -p .", diff --git a/backend/functions/src/index.ts b/backend/functions/src/index.ts index 9812113..3ef6869 100644 --- a/backend/functions/src/index.ts +++ b/backend/functions/src/index.ts @@ -28,7 +28,7 @@ Object.assign(exports, registry.exportGrouped({ memory: '4GiB', timeoutSeconds: 540, })); -registry.title = 'url2text'; +registry.title = 'reader'; registry.version = '0.1.0'; process.on('unhandledRejection', () => 'no big deal'); diff --git a/package.json b/package.json index e016ad9..9be05fb 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "url2text", + "name": "reader", "version": "1.0.0", "description": "### Prerequisite - Node v18 (The build fails for Node version >18) - Yarn - Firebase CLI (`npm install -g firebase-tools`)", "main": "index.js",