Skip to content

Commit

Permalink
chore: migrate from official monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Oct 16, 2023
0 parents commit 32e3d73
Show file tree
Hide file tree
Showing 19 changed files with 1,651 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
insert_final_newline = true
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* text eol=lf

*.png -text
*.jpg -text
*.ico -text
*.gif -text
*.webp -text
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install
run: yarn
- name: Build
run: yarn build
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
lib
dist

node_modules
npm-debug.log
yarn-debug.log
yarn-error.log
tsconfig.temp.json
tsconfig.tsbuildinfo

.eslintcache
.DS_Store
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
tsconfig.tsbuildinfo
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# koishi-plugin-dataview

[![npm](https://img.shields.io/npm/v/koishi-plugin-dataview?style=flat-square)](https://www.npmjs.com/package/koishi-plugin-dataview)

View database in the console | 在网页控制台中访问数据库
Loading

0 comments on commit 32e3d73

Please sign in to comment.