Merge branch 'develop' into 'master'
More hiragana fixes See merge request Dandellion/matrix-wug!18
This commit is contained in:
commit
0716ae081b
2
index.ts
2
index.ts
|
@ -1,4 +1,4 @@
|
||||||
const version = "2.4.3";
|
const version = "2.4.4";
|
||||||
import x2i from "./x2i";
|
import x2i from "./x2i";
|
||||||
import { existsSync } from "fs";
|
import { existsSync } from "fs";
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,14 +1,15 @@
|
||||||
{
|
{
|
||||||
"name": "vugg",
|
"name": "matrix-wug",
|
||||||
"version": "1.1.0",
|
"version": "2.4.3",
|
||||||
"description": "Language bot for matrix",
|
"description": "Language bot for matrix",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
"bin": "build/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "node build/index.js"
|
"start": "node build/index.js"
|
||||||
},
|
},
|
||||||
"author": "Daniel",
|
"author": "Daniel",
|
||||||
"license": "ISC",
|
"license": "AGPL3",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"matrix-bot-sdk": "^0.3.2",
|
"matrix-bot-sdk": "^0.3.2",
|
||||||
"@types/js-yaml": "^3.12.1",
|
"@types/js-yaml": "^3.12.1",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
with import <nixpkgs> {};
|
with import <nixpkgs> {};
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "node";
|
name = "node";
|
||||||
buildInputs = [ nodejs-10_x ];
|
buildInputs = [ nodejs-10_x yarn ];
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
export PATH="$PWD/node_modules/.bin/:$PATH"
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
- raw:
|
- raw:
|
||||||
- "[ōô]"
|
- "[ōô]"
|
||||||
- "oo"
|
- "oo"
|
||||||
|
- raw:
|
||||||
|
- "[īî]"
|
||||||
|
- "ii"
|
||||||
|
|
||||||
# youon souken 5-letter
|
# youon souken 5-letter
|
||||||
- raw:
|
- raw:
|
||||||
|
|
Loading…
Reference in New Issue