Commit e203d3a7 authored by nanahira's avatar nanahira

bump and dev server

parent fd49c0e9
/install-npm.sh /install-npm.sh
.git* .git*
/data
/output /output
/dest
/config.yaml /config.yaml
.idea .idea
.dockerignore .dockerignore
Dockerfile Dockerfile
/src /src
.eslintrc.js /dist/full
.prettierrc /coverage
webpack.config.js /tests
tsconfig.json/dist/full /dist/tests
/dev
/dist/dev
/webpack.config.js
/.eslint*
.*ignore
.prettierrc*
import { Context } from 'koishi';
export default class ExtrasInDev {
constructor(ctx: Context) {}
}
import { App } from 'koishi';
import TargetPlugin from '../src';
import ConsolePlugin from '@koishijs/plugin-console';
import SandboxPlugin from '@koishijs/plugin-sandbox';
import DatabasePlugin from '@koishijs/plugin-database-memory';
import CachePlugin from '@koishijs/plugin-cache-lru';
import ExtrasInDev from './extras';
const app = new App({
port: 14514,
host: 'localhost',
prefix: '.',
});
// Console and sandbox
app.plugin(SandboxPlugin);
app.plugin(ConsolePlugin, {
open: false,
});
// Some services
app.plugin(CachePlugin);
app.plugin(DatabasePlugin);
// Some extras
app.plugin(ExtrasInDev);
// Target plugin
app.plugin(TargetPlugin, {});
app.start();
This diff is collapsed.
...@@ -5,7 +5,9 @@ ...@@ -5,7 +5,9 @@
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"lint": "eslint --fix .", "lint": "eslint --fix .",
"build": "webpack && env PACK_ALL=1 webpack" "build": "webpack && env PACK_ALL=1 webpack",
"start": "ts-node ./dev",
"test": "jest --passWithNoTests"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
...@@ -24,15 +26,23 @@ ...@@ -24,15 +26,23 @@
"source-map-support": "^0.5.19" "source-map-support": "^0.5.19"
}, },
"devDependencies": { "devDependencies": {
"@koishijs/plugin-cache-lru": "^1.0.0-rc.0",
"@koishijs/plugin-console": "^3.1.1",
"@koishijs/plugin-database-memory": "^1.0.2",
"@koishijs/plugin-sandbox": "^1.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.4.12", "@types/node": "^16.4.12",
"@typescript-eslint/eslint-plugin": "^4.29.0", "@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0", "@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0", "eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0", "eslint-plugin-prettier": "^3.4.0",
"jest": "^27.5.1",
"prettier": "^2.3.2", "prettier": "^2.3.2",
"raw-loader": "^4.0.2", "raw-loader": "^4.0.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.5", "ts-loader": "^9.2.5",
"ts-node": "^10.5.0",
"typescript": "^4.3.5", "typescript": "^4.3.5",
"webpack": "^5.48.0", "webpack": "^5.48.0",
"webpack-cli": "^4.7.2", "webpack-cli": "^4.7.2",
...@@ -43,6 +53,23 @@ ...@@ -43,6 +53,23 @@
}, },
"homepage": "https://code.mycard.moe/nanahira/koishi-plugin-limit-help", "homepage": "https://code.mycard.moe/nanahira/koishi-plugin-limit-help",
"peerDependencies": { "peerDependencies": {
"koishi": "^4.2.1" "koishi": "^4.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "tests",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
} }
} }
import { App } from 'koishi';
import TargetPlugin from '../src';
describe('Test of plugin.', () => {
let app: App;
beforeEach(async () => {
app = new App();
// app.plugin(TargetPlugin);
await app.start();
});
it('should pass', () => {
expect(true).toBe(true);
});
});
...@@ -2,17 +2,20 @@ ...@@ -2,17 +2,20 @@
"compilerOptions": { "compilerOptions": {
"outDir": "dist", "outDir": "dist",
"module": "commonjs", "module": "commonjs",
"target": "esnext", "target": "es2021",
"esModuleInterop": true, "esModuleInterop": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"declaration": true, "declaration": true,
"sourceMap": true "sourceMap": true,
"skipLibCheck": true
}, },
"compileOnSave": true, "compileOnSave": true,
"allowJs": true, "allowJs": true,
"include": [ "include": [
"*.ts", "*.ts",
"src/**/*.ts" "src/**/*.ts",
"tests/**/*.ts",
"dev/**/*.ts"
] ]
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment