diff --git a/plugins/database/memory/.npmignore b/plugins/database/memory/.npmignore deleted file mode 100644 index 7e5fcbc18b..0000000000 --- a/plugins/database/memory/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -tsconfig.tsbuildinfo diff --git a/plugins/database/memory/package.json b/plugins/database/memory/package.json deleted file mode 100644 index e678f53039..0000000000 --- a/plugins/database/memory/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "@koishijs/plugin-database-memory", - "description": "A in-memory database implementation for Koishi", - "version": "2.6.0", - "main": "lib/index.cjs", - "module": "lib/index.mjs", - "typings": "lib/index.d.ts", - "files": [ - "lib", - "src" - ], - "author": "Shigma ", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/koishijs/koishi.git", - "directory": "plugins/database/memory" - }, - "bugs": { - "url": "https://github.com/koishijs/koishi/issues" - }, - "homepage": "https://koishi.chat/plugins/database/memory.html", - "keywords": [ - "bot", - "chatbot", - "koishi", - "plugin", - "database", - "server", - "memory" - ], - "koishi": { - "hidden": true, - "category": "storage", - "description": { - "en": "In-memory database support", - "zh": "基于内存的数据库支持 (主要用于本地测试)" - }, - "service": { - "implements": [ - "database" - ] - } - }, - "peerDependencies": { - "koishi": "^4.16.8" - }, - "devDependencies": { - "koishi": "^4.16.8" - }, - "dependencies": { - "@minatojs/driver-memory": "^2.6.0" - } -} diff --git a/plugins/database/memory/src/index.ts b/plugins/database/memory/src/index.ts deleted file mode 100644 index 12d71b662a..0000000000 --- a/plugins/database/memory/src/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { defineDriver, Schema } from 'koishi' -import { MemoryDriver } from '@minatojs/driver-memory' - -export default defineDriver(MemoryDriver, Schema.object({})) diff --git a/plugins/database/memory/tsconfig.json b/plugins/database/memory/tsconfig.json deleted file mode 100644 index 72a43d6a02..0000000000 --- a/plugins/database/memory/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../../tsconfig.base", - "compilerOptions": { - "rootDir": "src", - "outDir": "lib", - }, - "include": [ - "src", - ], -} \ No newline at end of file diff --git a/plugins/database/mongo/.npmignore b/plugins/database/mongo/.npmignore deleted file mode 100644 index 7e5fcbc18b..0000000000 --- a/plugins/database/mongo/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -tsconfig.tsbuildinfo diff --git a/plugins/database/mongo/package.json b/plugins/database/mongo/package.json deleted file mode 100644 index 5ef3b31628..0000000000 --- a/plugins/database/mongo/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "@koishijs/plugin-database-mongo", - "description": "MongoDB support for Koishi", - "version": "4.11.0", - "main": "lib/index.js", - "typings": "lib/index.d.ts", - "files": [ - "lib", - "src" - ], - "author": "undefined ", - "contributors": [ - "Shigma ", - "undefined " - ], - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/koishijs/koishi.git", - "directory": "plugins/database/mongo" - }, - "bugs": { - "url": "https://github.com/koishijs/koishi/issues" - }, - "homepage": "https://koishi.chat/plugins/database/mongo.html", - "keywords": [ - "bot", - "chatbot", - "koishi", - "database", - "mongo" - ], - "koishi": { - "category": "storage", - "description": { - "en": "MongoDB support", - "zh": "MongoDB 支持" - }, - "service": { - "implements": [ - "database" - ] - } - }, - "peerDependencies": { - "koishi": "^4.16.8" - }, - "devDependencies": { - "koishi": "^4.16.8" - }, - "dependencies": { - "@minatojs/driver-mongo": "^2.11.0" - } -} diff --git a/plugins/database/mongo/src/index.ts b/plugins/database/mongo/src/index.ts deleted file mode 100644 index 073d35274b..0000000000 --- a/plugins/database/mongo/src/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { defineDriver, Schema } from 'koishi' -import { MongoDriver } from '@minatojs/driver-mongo' - -export default defineDriver(MongoDriver, Schema.object({ - protocol: Schema.string().default('mongodb'), - host: Schema.string().default('localhost'), - port: Schema.natural().max(65535), - username: Schema.string(), - password: Schema.string().role('secret'), - database: Schema.string().default('koishi'), - writeConcern: Schema.object({ - w: Schema.union([ - Schema.const(undefined), - Schema.number().required(), - Schema.const('majority').required(), - ]), - wtimeoutMS: Schema.number(), - journal: Schema.boolean(), - }), -}).i18n({ - 'zh-CN': require('./locales/zh-CN'), -})) diff --git a/plugins/database/mongo/src/locales/de-DE.yml b/plugins/database/mongo/src/locales/de-DE.yml deleted file mode 100644 index 0dc1eefc30..0000000000 --- a/plugins/database/mongo/src/locales/de-DE.yml +++ /dev/null @@ -1,6 +0,0 @@ -protocol: 要使用的协议名。 -host: 要连接到的主机名。 -port: 要连接到的端口号。 -username: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mongo/src/locales/en-US.yml b/plugins/database/mongo/src/locales/en-US.yml deleted file mode 100644 index 9dab87fc60..0000000000 --- a/plugins/database/mongo/src/locales/en-US.yml +++ /dev/null @@ -1,16 +0,0 @@ -protocol: The protocol to use. -host: The host to connect to. -port: The port number to be connected. -username: The username used for authentication. -password: The password used for authentication. -database: The name of the database we want to use. -writeConcern: - $description: Write Concern - w: - $description: The write concern. - $value: - - Default - - Custom - - Majority - wtimeoutMS: The write concern timeout. - journal: The journal write concern. diff --git a/plugins/database/mongo/src/locales/fr-FR.yml b/plugins/database/mongo/src/locales/fr-FR.yml deleted file mode 100644 index 0dc1eefc30..0000000000 --- a/plugins/database/mongo/src/locales/fr-FR.yml +++ /dev/null @@ -1,6 +0,0 @@ -protocol: 要使用的协议名。 -host: 要连接到的主机名。 -port: 要连接到的端口号。 -username: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mongo/src/locales/ja-JP.yml b/plugins/database/mongo/src/locales/ja-JP.yml deleted file mode 100644 index 0dc1eefc30..0000000000 --- a/plugins/database/mongo/src/locales/ja-JP.yml +++ /dev/null @@ -1,6 +0,0 @@ -protocol: 要使用的协议名。 -host: 要连接到的主机名。 -port: 要连接到的端口号。 -username: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mongo/src/locales/ru-RU.yml b/plugins/database/mongo/src/locales/ru-RU.yml deleted file mode 100644 index 0dc1eefc30..0000000000 --- a/plugins/database/mongo/src/locales/ru-RU.yml +++ /dev/null @@ -1,6 +0,0 @@ -protocol: 要使用的协议名。 -host: 要连接到的主机名。 -port: 要连接到的端口号。 -username: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mongo/src/locales/zh-CN.yml b/plugins/database/mongo/src/locales/zh-CN.yml deleted file mode 100644 index 4d125b97f3..0000000000 --- a/plugins/database/mongo/src/locales/zh-CN.yml +++ /dev/null @@ -1,16 +0,0 @@ -protocol: 要使用的协议名。 -host: 要连接到的主机名。 -port: 要连接到的端口号。 -username: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 -writeConcern: - $description: Write Concern - w: - $description: The write concern. - $value: - - Default - - Custom - - Majority - wtimeoutMS: The write concern timeout. - journal: The journal write concern. diff --git a/plugins/database/mongo/src/locales/zh-TW.yml b/plugins/database/mongo/src/locales/zh-TW.yml deleted file mode 100644 index bb5735bbe8..0000000000 --- a/plugins/database/mongo/src/locales/zh-TW.yml +++ /dev/null @@ -1,6 +0,0 @@ -protocol: 要使用的協議名。 -host: 要連接到的主機名。 -port: 要連接到的端口號。 -username: 要使用的使用者名。 -password: 要使用的密碼。 -database: 要訪問的數據庫名。 diff --git a/plugins/database/mongo/tsconfig.json b/plugins/database/mongo/tsconfig.json deleted file mode 100644 index 72a43d6a02..0000000000 --- a/plugins/database/mongo/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../../tsconfig.base", - "compilerOptions": { - "rootDir": "src", - "outDir": "lib", - }, - "include": [ - "src", - ], -} \ No newline at end of file diff --git a/plugins/database/mysql/.npmignore b/plugins/database/mysql/.npmignore deleted file mode 100644 index 7e5fcbc18b..0000000000 --- a/plugins/database/mysql/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -tsconfig.tsbuildinfo diff --git a/plugins/database/mysql/README.md b/plugins/database/mysql/README.md deleted file mode 100644 index 96ea3ad8f3..0000000000 --- a/plugins/database/mysql/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# @koishijs/plugin-database-mysql - -[![Status](https://img.shields.io/github/workflow/status/koishijs/koishi/CI/master?style=flat-square)](https://github.com/koishijs/koishi/actions?query=workflow:CI) -[![npm](https://img.shields.io/npm/v/@koishijs/plugin-database-mysql?style=flat-square)](https://www.npmjs.com/package/@koishijs/plugin-database-mysql) - -MySQL implementation for Koishi. - -## Usage - -- [Using Database with Koishi](https://koishi.chat/guide/using-database.html) -- [Full API Reference](https://koishi.chat/api/database.html) diff --git a/plugins/database/mysql/package.json b/plugins/database/mysql/package.json deleted file mode 100644 index 72aabb254e..0000000000 --- a/plugins/database/mysql/package.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "name": "@koishijs/plugin-database-mysql", - "description": "MySQL support for Koishi", - "version": "5.8.0", - "main": "lib/index.js", - "typings": "lib/index.d.ts", - "files": [ - "lib", - "src" - ], - "author": "Shigma ", - "license": "MIT", - "scripts": { - "lint": "eslint src --ext .ts" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/koishijs/koishi.git", - "directory": "plugins/database/mysql" - }, - "bugs": { - "url": "https://github.com/koishijs/koishi/issues" - }, - "homepage": "https://koishi.chat/plugins/database/mysql.html", - "keywords": [ - "bot", - "chatbot", - "koishi", - "database", - "mysql" - ], - "koishi": { - "category": "storage", - "description": { - "en": "MySQL (MariaDB) support", - "zh": "MySQL (MariaDB) 支持" - }, - "service": { - "implements": [ - "database" - ] - } - }, - "peerDependencies": { - "koishi": "^4.16.8" - }, - "devDependencies": { - "koishi": "^4.16.8" - }, - "dependencies": { - "@minatojs/driver-mysql": "^2.8.0" - } -} diff --git a/plugins/database/mysql/src/index.ts b/plugins/database/mysql/src/index.ts deleted file mode 100644 index f7dac3dc3c..0000000000 --- a/plugins/database/mysql/src/index.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { defineDriver, Schema } from 'koishi' -import { MySQLDriver } from '@minatojs/driver-mysql' - -export default defineDriver(MySQLDriver, Schema.intersect([ - Schema.object({ - host: Schema.string().default('localhost'), - port: Schema.natural().max(65535).default(3306), - user: Schema.string().default('root'), - password: Schema.string().role('secret'), - database: Schema.string().default('koishi'), - }), - Schema.object({ - ssl: Schema.union([ - Schema.const(undefined), - Schema.object({ - ca: Schema.string(), - cert: Schema.string(), - sigalgs: Schema.string(), - ciphers: Schema.string(), - clientCertEngine: Schema.string(), - crl: Schema.string(), - dhparam: Schema.string(), - ecdhCurve: Schema.string(), - honorCipherOrder: Schema.boolean(), - key: Schema.string(), - privateKeyEngine: Schema.string(), - privateKeyIdentifier: Schema.string(), - maxVersion: Schema.string(), - minVersion: Schema.string(), - passphrase: Schema.string(), - pfx: Schema.string(), - rejectUnauthorized: Schema.boolean(), - secureOptions: Schema.natural(), - secureProtocol: Schema.string(), - sessionIdContext: Schema.string(), - sessionTimeout: Schema.number(), - }), - ]) as any, - }), -]).i18n({ - 'zh-CN': require('./locales/zh-CN'), -})) diff --git a/plugins/database/mysql/src/locales/de-DE.yml b/plugins/database/mysql/src/locales/de-DE.yml deleted file mode 100644 index 63eacada39..0000000000 --- a/plugins/database/mysql/src/locales/de-DE.yml +++ /dev/null @@ -1,5 +0,0 @@ -host: 要连接到的主机名。 -port: 要连接到的端口号。 -user: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mysql/src/locales/en-US.yml b/plugins/database/mysql/src/locales/en-US.yml deleted file mode 100644 index 6b951df38c..0000000000 --- a/plugins/database/mysql/src/locales/en-US.yml +++ /dev/null @@ -1,12 +0,0 @@ -host: The hostname of the database you are connecting to. -port: The port number to connect to. -user: The MySQL user to authenticate as. -password: The password of that MySQL user. -database: Name of the database to use for this connection. - -ssl: - $description: SSL options. - $value: - - Default - - $description: Custom - rejectUnauthorized: Reject clients with invalid certificates. diff --git a/plugins/database/mysql/src/locales/fr-FR.yml b/plugins/database/mysql/src/locales/fr-FR.yml deleted file mode 100644 index 63eacada39..0000000000 --- a/plugins/database/mysql/src/locales/fr-FR.yml +++ /dev/null @@ -1,5 +0,0 @@ -host: 要连接到的主机名。 -port: 要连接到的端口号。 -user: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mysql/src/locales/ja-JP.yml b/plugins/database/mysql/src/locales/ja-JP.yml deleted file mode 100644 index 63eacada39..0000000000 --- a/plugins/database/mysql/src/locales/ja-JP.yml +++ /dev/null @@ -1,5 +0,0 @@ -host: 要连接到的主机名。 -port: 要连接到的端口号。 -user: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mysql/src/locales/ru-RU.yml b/plugins/database/mysql/src/locales/ru-RU.yml deleted file mode 100644 index 63eacada39..0000000000 --- a/plugins/database/mysql/src/locales/ru-RU.yml +++ /dev/null @@ -1,5 +0,0 @@ -host: 要连接到的主机名。 -port: 要连接到的端口号。 -user: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/mysql/src/locales/zh-CN.yml b/plugins/database/mysql/src/locales/zh-CN.yml deleted file mode 100644 index 8a79dc6f7d..0000000000 --- a/plugins/database/mysql/src/locales/zh-CN.yml +++ /dev/null @@ -1,12 +0,0 @@ -host: 要连接到的主机名。 -port: 要连接到的端口号。 -user: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 - -ssl: - $description: SSL 高级选项。 - $value: - - 默认值 - - $description: 自定义 - rejectUnauthorized: 拒绝使用无效证书的客户端。 diff --git a/plugins/database/mysql/src/locales/zh-TW.yml b/plugins/database/mysql/src/locales/zh-TW.yml deleted file mode 100644 index 3e55b826d6..0000000000 --- a/plugins/database/mysql/src/locales/zh-TW.yml +++ /dev/null @@ -1,5 +0,0 @@ -host: 要連接到的主機名。 -port: 要連接到的端口號。 -user: 要使用的使用者名。 -password: 要使用的密碼。 -database: 要訪問的數據庫名。 diff --git a/plugins/database/mysql/tsconfig.json b/plugins/database/mysql/tsconfig.json deleted file mode 100644 index 72a43d6a02..0000000000 --- a/plugins/database/mysql/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../../tsconfig.base", - "compilerOptions": { - "rootDir": "src", - "outDir": "lib", - }, - "include": [ - "src", - ], -} \ No newline at end of file diff --git a/plugins/database/postgres/.npmignore b/plugins/database/postgres/.npmignore deleted file mode 100644 index 7e5fcbc18b..0000000000 --- a/plugins/database/postgres/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -tsconfig.tsbuildinfo diff --git a/plugins/database/postgres/package.json b/plugins/database/postgres/package.json deleted file mode 100644 index d7660b5e86..0000000000 --- a/plugins/database/postgres/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "@koishijs/plugin-database-postgres", - "description": "PostgreSQL support for Koishi", - "version": "1.2.0", - "main": "lib/index.js", - "typings": "lib/index.d.ts", - "files": [ - "lib", - "src" - ], - "author": "Seidko ", - "contributors": [ - "Hieuzest ", - "Seidko " - ], - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/koishijs/koishi.git", - "directory": "plugins/database/postgres" - }, - "bugs": { - "url": "https://github.com/koishijs/koishi/issues" - }, - "homepage": "https://koishi.chat/plugins/database/postgres.html", - "keywords": [ - "bot", - "chatbot", - "koishi", - "database", - "postgres" - ], - "koishi": { - "category": "storage", - "description": { - "en": "PostgreSQL support", - "zh": "PostgreSQL 支持" - }, - "service": { - "implements": [ - "database" - ] - } - }, - "peerDependencies": { - "koishi": "^4.16.8" - }, - "devDependencies": { - "koishi": "^4.16.8" - }, - "dependencies": { - "@minatojs/driver-postgres": "^1.2.0" - } -} diff --git a/plugins/database/postgres/src/index.ts b/plugins/database/postgres/src/index.ts deleted file mode 100644 index 58c3fe562c..0000000000 --- a/plugins/database/postgres/src/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { defineDriver, Schema } from 'koishi' -import { PostgresDriver } from '@minatojs/driver-postgres' - -export default defineDriver(PostgresDriver, Schema.object({ - host: Schema.string().default('localhost'), - port: Schema.natural().max(65535).default(5432), - user: Schema.string().default('root'), - password: Schema.string().role('secret'), - database: Schema.string().default('koishi'), -}).i18n({ - 'zh-CN': require('./locales/zh-CN'), -})) diff --git a/plugins/database/postgres/src/locales/zh-CN.yml b/plugins/database/postgres/src/locales/zh-CN.yml deleted file mode 100644 index 353924bdce..0000000000 --- a/plugins/database/postgres/src/locales/zh-CN.yml +++ /dev/null @@ -1,5 +0,0 @@ -host: 要连接到的主机名。 -port: 要连接到的端口号。 -username: 要使用的用户名。 -password: 要使用的密码。 -database: 要访问的数据库名。 diff --git a/plugins/database/postgres/tsconfig.json b/plugins/database/postgres/tsconfig.json deleted file mode 100644 index 72a43d6a02..0000000000 --- a/plugins/database/postgres/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../../tsconfig.base", - "compilerOptions": { - "rootDir": "src", - "outDir": "lib", - }, - "include": [ - "src", - ], -} \ No newline at end of file diff --git a/plugins/database/sqlite/.npmignore b/plugins/database/sqlite/.npmignore deleted file mode 100644 index 7e5fcbc18b..0000000000 --- a/plugins/database/sqlite/.npmignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -tsconfig.tsbuildinfo diff --git a/plugins/database/sqlite/README.md b/plugins/database/sqlite/README.md deleted file mode 100644 index 4db6a27d5a..0000000000 --- a/plugins/database/sqlite/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# @koishijs/plugin-database-sqlite - -SQLite Database implementation for Koishi. diff --git a/plugins/database/sqlite/package.json b/plugins/database/sqlite/package.json deleted file mode 100644 index ceda79b2f5..0000000000 --- a/plugins/database/sqlite/package.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "name": "@koishijs/plugin-database-sqlite", - "description": "SQLite support for Koishi", - "version": "3.9.0", - "main": "lib/index.js", - "module": "lib/index.mjs", - "typings": "lib/index.d.ts", - "files": [ - "lib", - "src" - ], - "author": "thezzisu <2100012732@stu.pku.edu.cn>", - "contributors": [ - "Shigma ", - "thezzisu <2100012732@stu.pku.edu.cn>" - ], - "license": "MIT", - "scripts": { - "lint": "eslint src --ext .ts" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/koishijs/koishi.git", - "directory": "plugins/database/sqlite" - }, - "bugs": { - "url": "https://github.com/koishijs/koishi/issues" - }, - "homepage": "https://koishi.chat/plugins/database/sqlite.html", - "keywords": [ - "bot", - "chatbot", - "koishi", - "plugin", - "database", - "sqlite" - ], - "koishi": { - "browser": true, - "exports": { - "sql-wasm.wasm": "@minatojs/sql.js/dist/sql-wasm.wasm" - }, - "description": { - "en": "SQLite support", - "zh": "SQLite 支持" - }, - "service": { - "implements": [ - "database" - ] - } - }, - "peerDependencies": { - "koishi": "^4.16.8" - }, - "devDependencies": { - "koishi": "^4.16.8" - }, - "dependencies": { - "@minatojs/driver-sqlite": "^3.9.0" - } -} diff --git a/plugins/database/sqlite/src/index.ts b/plugins/database/sqlite/src/index.ts deleted file mode 100644 index e836e39e39..0000000000 --- a/plugins/database/sqlite/src/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { defineDriver, Logger, Schema } from 'koishi' -import { SQLiteDriver } from '@minatojs/driver-sqlite' -import { mkdir, rename, stat } from 'fs/promises' -import { dirname, join } from 'path' -import zhCN from './locales/zh-CN.yml' - -const logger = new Logger('sqlite') - -export default defineDriver(SQLiteDriver, Schema.object({ - path: Schema.path().default('data/koishi.db'), -}).i18n({ - 'zh-CN': zhCN, -}), async (ctx, config) => { - if (config.path === ':memory:') return - config.path = join(ctx.baseDir, config.path) - const oldPath = join(ctx.baseDir, '.koishi.db') - if (await stat(oldPath).catch(() => null)) { - logger.info('migrating to data directory') - await mkdir(dirname(config.path), { recursive: true }) - await rename(oldPath, config.path) - } -}) diff --git a/plugins/database/sqlite/src/locales/de-DE.yml b/plugins/database/sqlite/src/locales/de-DE.yml deleted file mode 100644 index b09c9d6bd4..0000000000 --- a/plugins/database/sqlite/src/locales/de-DE.yml +++ /dev/null @@ -1 +0,0 @@ -path: 数据库路径。 diff --git a/plugins/database/sqlite/src/locales/en-US.yml b/plugins/database/sqlite/src/locales/en-US.yml deleted file mode 100644 index 4728d56482..0000000000 --- a/plugins/database/sqlite/src/locales/en-US.yml +++ /dev/null @@ -1 +0,0 @@ -path: Database path. diff --git a/plugins/database/sqlite/src/locales/fr-FR.yml b/plugins/database/sqlite/src/locales/fr-FR.yml deleted file mode 100644 index b09c9d6bd4..0000000000 --- a/plugins/database/sqlite/src/locales/fr-FR.yml +++ /dev/null @@ -1 +0,0 @@ -path: 数据库路径。 diff --git a/plugins/database/sqlite/src/locales/ja-JP.yml b/plugins/database/sqlite/src/locales/ja-JP.yml deleted file mode 100644 index b09c9d6bd4..0000000000 --- a/plugins/database/sqlite/src/locales/ja-JP.yml +++ /dev/null @@ -1 +0,0 @@ -path: 数据库路径。 diff --git a/plugins/database/sqlite/src/locales/ru-RU.yml b/plugins/database/sqlite/src/locales/ru-RU.yml deleted file mode 100644 index b09c9d6bd4..0000000000 --- a/plugins/database/sqlite/src/locales/ru-RU.yml +++ /dev/null @@ -1 +0,0 @@ -path: 数据库路径。 diff --git a/plugins/database/sqlite/src/locales/zh-CN.yml b/plugins/database/sqlite/src/locales/zh-CN.yml deleted file mode 100644 index b09c9d6bd4..0000000000 --- a/plugins/database/sqlite/src/locales/zh-CN.yml +++ /dev/null @@ -1 +0,0 @@ -path: 数据库路径。 diff --git a/plugins/database/sqlite/src/locales/zh-TW.yml b/plugins/database/sqlite/src/locales/zh-TW.yml deleted file mode 100644 index 3e6cd8b7fb..0000000000 --- a/plugins/database/sqlite/src/locales/zh-TW.yml +++ /dev/null @@ -1 +0,0 @@ -path: 數據庫路徑。 diff --git a/plugins/database/sqlite/tsconfig.json b/plugins/database/sqlite/tsconfig.json deleted file mode 100644 index 72a43d6a02..0000000000 --- a/plugins/database/sqlite/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../../tsconfig.base", - "compilerOptions": { - "rootDir": "src", - "outDir": "lib", - }, - "include": [ - "src", - ], -} \ No newline at end of file