yukichant 3.0.4 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/app-test.yml +4 -4
- package/README.md +5 -17
- package/data/meisi.json +1 -0
- package/doc/develop.md +20 -0
- package/package.json +1 -1
|
@@ -39,10 +39,6 @@ jobs:
|
|
|
39
39
|
|
|
40
40
|
- run: node -v
|
|
41
41
|
- uses: actions/checkout@v2
|
|
42
|
-
- name: Use Node.js ${{ matrix.node-version }}
|
|
43
|
-
uses: actions/setup-node@v2
|
|
44
|
-
with:
|
|
45
|
-
node-version: ${{ matrix.node-version }}
|
|
46
42
|
|
|
47
43
|
- name: install yukichant on local
|
|
48
44
|
run: |
|
|
@@ -52,6 +48,10 @@ jobs:
|
|
|
52
48
|
- name: mkdir sandbox
|
|
53
49
|
run: mkdir -p ./exec_dir
|
|
54
50
|
|
|
51
|
+
- name: check cli path
|
|
52
|
+
run: which chant
|
|
53
|
+
working-directory: ./exec_dir
|
|
54
|
+
|
|
55
55
|
- run: chant
|
|
56
56
|
working-directory: ./exec_dir
|
|
57
57
|
|
package/README.md
CHANGED
|
@@ -28,25 +28,13 @@ $ chant
|
|
|
28
28
|
水面も灰塵に蒼穹を抗え。
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
##
|
|
32
|
-
|
|
33
|
-
install dependency
|
|
34
|
-
```bash
|
|
35
|
-
$ npm install
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
execute command
|
|
39
|
-
```bash
|
|
40
|
-
## run encode
|
|
41
|
-
$ npm run dev unko
|
|
42
|
-
## run decode
|
|
43
|
-
$ npm run dev unko | npm run dev -- -d
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
## LICENSE
|
|
47
|
-
Apache-2.0
|
|
31
|
+
## Documentation for Developers
|
|
32
|
+
[develop](/doc/develop.md)
|
|
48
33
|
|
|
49
34
|
## Thanks
|
|
50
35
|
I named "yukichant" by Nagato Yuki-chan + chant .
|
|
51
36
|
because I want to chant magic words like her.
|
|
52
37
|
|
|
38
|
+
## LICENSE
|
|
39
|
+
Apache-2.0
|
|
40
|
+
|
package/data/meisi.json
CHANGED
package/doc/develop.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Develop
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
## install dependency
|
|
5
|
+
```bash
|
|
6
|
+
$ npm install
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## execute command
|
|
10
|
+
```bash
|
|
11
|
+
## run encode
|
|
12
|
+
$ npm run dev unko
|
|
13
|
+
## run decode
|
|
14
|
+
$ npm run dev unko | npm run dev -- -d
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## generate meisi.json
|
|
18
|
+
```bash
|
|
19
|
+
$ ./raw_data/meisi_json_generator
|
|
20
|
+
```
|